EXCEL: If I want to copy the data from cells B2 to B22 and then paste special/transpose the data to cell A27 I can simply use the below script. However, if A27 already has data in it, I need the script to look for the next blank row below 27 and put the data there. How do I change my script to be able to do this please?
Sub Macro1()
'
' Macro1 Macro
'
'
Range("B1:B22").Select
Selection.Copy
ActiveWindow.SmallScroll Down:=6
Range("A27").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub