i have a table with three columns...whenever i use the macro to enter new data in the table, it messes it up and it's no longer dynamic. after the macro, if i manually enter data again, the table does not expand.
Code:
'put time stamp
Sheets("Time Stamp").Select
finalrow = Cells(Rows.Count, "A").End(xlUp).Row
'time
Range("c" & finalrow + 1).Select
ActiveCell.FormulaR1C1 = "=now()"
ActiveCell.Copy
ActiveCell.PasteSpecial xlValues
'date
ActiveCell.Offset(, -1).Select
ActiveCell.FormulaR1C1 = "=TODAY()"
ActiveCell.Copy
ActiveCell.PasteSpecial xlValues
Application.CutCopyMode = False