I've never used excel to do anything like this before, so could do with some advice.
I have a very simple sheet that has a basic form, when the user completes the form I want them to click a save button and the data from the form is then inserted into a new row.
Hopefully this image explains. Marcus's details have been added to the form, when SAVE is clicked I need to add a new row (11) with Marcus's details.
Is this possible ? Could someone point me In the right direction ?
This is the first time I've looked at macros and doing anything like this in excel.
Using the macro recorder I can copy data from C3:C5 & G3:G5 and paste them to row 11, but how do I add a new row and paste to that. Finally how do I bind the macro to the SAVE cell ?
Sub Copy()
'
' Copy Macro
'
'
Range("C3:C5").Select
Selection.Copy
Range("A11").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
Range("G3:G5").Select
Application.CutCopyMode = False
Selection.Copy
Range("D11").Select
Selection.PasteSpecial Paste:=xlPasteAll, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=True
End Sub