I've got a macro in a sheet thats used for copying some data from one sheet to another. And yes I'm very new to this!
Sub copy_to_po()
'
' copy_to_po Macro
'
'
Range("B7:F36").Select
Selection.Copy
Sheets("PO ").Select
Range("A14").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Sheets("Ordering Sheet").Select
End Sub
The problem that I have is that the range is dynamic. It always starts at B7 and goes no further than column F, however the row varies based on data that is entered in column E. Its always in order, its just a case of saying stop the selection at the row where there is no more data in column E.
Thanks in advance!
