I have recorded a Macro in Excel 2016, however whenever I run this Macro it overwrite my previous answer, how should I put my new answer to next row?
Sub update()
'
' update Macro
'
'
Range("B4:G4").Select
Selection.Copy
Sheets("Sheet4").Select
Range("B2").Select
ActiveSheet.Paste
Sheets("Sheet3").Select
Range("B7:G7").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Sheet4").Select
Range("B3").Select
ActiveSheet.Paste
End Sub