Hi there,
I'm currently trying to create a simple copy and paste macro on excel 2003.
All i want to do is copy a column of data into excel, copy and transpose it into rows and store in a list below, i can get the macro to copy and transpose the data but after that i want each column of data i enter to be stored in the next blank cell.
This is the basic code i have been using for the copying and transposing:
Range("B3:B22").Select
Selection.Copy
Range("A27").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
I know it's very basic but i need a line of code in there to make it select and paste to the next available blank cell.
Any help would be greatly appreciated, Please??
I'm currently trying to create a simple copy and paste macro on excel 2003.
All i want to do is copy a column of data into excel, copy and transpose it into rows and store in a list below, i can get the macro to copy and transpose the data but after that i want each column of data i enter to be stored in the next blank cell.
This is the basic code i have been using for the copying and transposing:
Range("B3:B22").Select
Selection.Copy
Range("A27").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
I know it's very basic but i need a line of code in there to make it select and paste to the next available blank cell.
Any help would be greatly appreciated, Please??