Hi Admin,
Sorry to post my requirement in this thread as I am very new to this forum and still to find the way to post a new thread.
I am using MS office 2007, windows XP professional
I am in urgent need of a macro. the requirements are as follows:
Copies different columns (a msg box to ask how many columns to copy) and paste under one column in a destination (input box to ask for the destination) for pasting the copied data.
I tried using clipboard and recording a macro but this does not seem to work perfectly
Column1 Column2 Column3 Column4
A B C D
A B C D
A B C D
A B C D
A B C D
Solution should look like:
New Column
A
A
A
A
A
B
B
B
B
B
C
C
C
C
C
D
D
D
D
D
I have tried this macro but this is not fullfiling my requirements
Hope, I get the solution to my problem.Code:Sub Macro1() ' ' Macro1 Macro ' ' Range(Selection, Selection.End(xlDown)).Select Selection.Copy ActiveCell.Offset(0, 1).Range("A1").Select End Sub
Thank you so much in advance.
Thanks,
Vikash




Reply With Quote

Bookmarks