I have a table below another table.
If I add a lot of values in the first table, the second table will change cells and go further below.
Sub Macro4()
Range("Table2[Work]").Select
Selection.ListObject.ListRows.Add (1)
Range("A24").Value = Now
Range("B24").Value = VBA.Environ("Username")
End Sub
I'm using range (A24 and B24) to add values. I would rather have them follow up the table whatever it's location instead of hardcoding it.
Write to the Last Row of a Table
The Code