Add row to table copying formatting

emilybrush

New Member
Joined
Jan 31, 2024
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hi,

Very grateful for anyone's help or advice! I have a table called "CR_Table" - I'm looking to add some VBA code to insert a row to the bottom of the table when I click on a button, copying the formatting/ formula from above. Please could anyone let me know what code would help me do this?

Thank you!!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
try this, it will copy all formats and formulas

VBA Code:
Sub InsertRow()
    Dim tbl As ListObject
    Dim nRow As ListRow
    
    Application.ScreenUpdating = False
    Application.EnableEvents = False
    
    Set tbl = Worksheets("Sheet1").ListObjects("CR_Table") ' change your worksheet name
    
    With tbl
        Set nRow = .ListRows.Add
        
        nRow.Range(, 1).Value = "value"
        nRow.Range(, 2).Value = "valu2"
    End With

    Application.ScreenUpdating = True
    Application.EnableEvents = True
End Sub
 
Upvote 0
Solution
try this, it will copy all formats and formulas

VBA Code:
Sub InsertRow()
    Dim tbl As ListObject
    Dim nRow As ListRow
   
    Application.ScreenUpdating = False
    Application.EnableEvents = False
   
    Set tbl = Worksheets("Sheet1").ListObjects("CR_Table") ' change your worksheet name
   
    With tbl
        Set nRow = .ListRows.Add
       
        nRow.Range(, 1).Value = "value"
        nRow.Range(, 2).Value = "valu2"
    End With

    Application.ScreenUpdating = True
    Application.EnableEvents = True
End Sub
Thank you so much!!
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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