I'm new with VBA, so I'm trying to create a macro button that can copy paste data from one worksheet to another but I think my code is flawed because the worksheet flickers whenever I run the code
tried a simple code since I'm new with VBA
Worksheets("Survey Form").Range("C9").Copy
Worksheets("Database").Activate
Cells(Rows.Count, 1).End(xlUp).Select
ActiveCell.Offset(1).Select
ActiveCell.PasteSpecial xlPasteValues
Worksheets("Survey Form").Activate
Application.CutCopyMode = False
I want the code to run smoothly without that flicker