Good morning
I would need some help with a code which will allow me to copy 4 values from one active temporal worksheet (B56:B59) and paste them into another worksheet (A2:D2) named "log". I have managed to do this by using the Transpose option upon pasting (please see code below).
I am struggling with a particular part of the code since I would need theses copied values to be pasted right under the next available blank line.
I would appreciate any help on this.
Thanks in advance
*************************************************************************
Sub save()
ActiveSheet.Shapes("Save_button").Select
Range("B56:B59").Select
Selection.Copy
Sheets("Log").Select
Range("A2").Select
Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
xlNone, SkipBlanks:=False, Transpose:=True
End Sub
*************************************************************************
Bookmarks