I am very new to macro and trying to use it for our daily production sheet. I have created a macro to copy the values sheet1 to sheet2.
Range("B3").Select
Selection.Copy
Sheets("sheet2").Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
what I need is if sheet2 cell A1 is not blank then paste values need to be in range A2.
hope I explain well.