J
JHL
Hello
I just recorded this copy and paste macro, but I would like to either
1.. place the cursor where I want to paste OR
2.. select the line in an input box
The pasting of the data will always be a different line in the Allocations
sheet.
Will someone give me some help please? Thanks.
Sub A()
Sheets("Budget").Select
Range("H3:H15").Select
Selection.Copy
I want to modify this area with either placing the cursor or input box
Sheets("Allocations").Select
Range("B55").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub
I just recorded this copy and paste macro, but I would like to either
1.. place the cursor where I want to paste OR
2.. select the line in an input box
The pasting of the data will always be a different line in the Allocations
sheet.
Will someone give me some help please? Thanks.
Sub A()
Sheets("Budget").Select
Range("H3:H15").Select
Selection.Copy
I want to modify this area with either placing the cursor or input box
Sheets("Allocations").Select
Range("B55").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub