Add Rows to a table

Chuckarou

New Member
Joined
Jul 12, 2018
Messages
19
Hello all,
I would like to have a macro that adds 50 rows to a table when a button is pressed, and auto populate with my formulas. I have tried using the macro recorder, to no avail. I also tried with loops, but it doesn't work either. the reason why I need this is that this table is a visual reference for the users, and so has to always contain the latest data.

Thanks in advance,
Chuckarou
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Assuming the name of your Table is "Table1", how about this...

Code:
Sub ResizeTable()


    Dim rng As Range
    Dim tbl As ListObject
  
    'Expand Table size by 50 rows
    Set tbl = ActiveSheet.ListObjects("Table1")
    Set rng = Range("Table1[#All]").Resize(tbl.Range.Rows.Count + 50, tbl.Range.Columns.Count)
  
    tbl.Resize rng


End Sub
 
Upvote 0
You're welcome. I was happy to help. Thanks for the feedback!
 
Upvote 0

Forum statistics

Threads
1,216,031
Messages
6,128,424
Members
449,450
Latest member
gunars

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top