Forum Discussion
Eggselling
Dec 31, 2022Copper Contributor
Using Macros to add to a table
Keyboard Shortcut: Ctrl+y
'
Dim ws As Worksheet
Set ws = ActiveSheet
Table_Name = InputBox("Table2")
Dm tbl As ListObject
Set tbl = ws.ListObjects(Table_Name)
tbl.ListRows.Add
Range(Selecti...
JKPieterse
Jan 04, 2023Silver Contributor
Eggselling Post your code. Use the full text editor and use the "Insert code" button (right-most button) to insert your existing code.
Eggselling
Jan 09, 2023Copper Contributor
Thanks Jan, just posted!