Sub Macro11()
'
' Macro11 Macro
'
'
Calculate
Range("B46:CRZ46").Select
Selection.Copy
Sheets("Sheet1").Select
Range("B:B").Select
Cells(Range("B:B").End(xlUp).Row + 1).PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End Sub
What the following Macro does, is refresh the page (which creates a new data set), copy the data set from ("B46:CRZ46") and paste it in "Sheet1".
Now, I want the pasting to go down a row every time (which I tried with .End(xlUp) however I am not using it correctly and it just copies and pastes on the same row.
What could I change or add to for the code to function well?