Button macro to dynamically fill in blank cells in Table with zeros

alexcon

New Member
Joined
Dec 29, 2017
Messages
20
Greetings, I've got a defined table in excel (when you convert a range into an actual Table).

I need a button macro to dynamically fill in all blank cells of the Table with zeros even if we add more rows and columns later- then rerun the macro.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Try this:
Assumes your Table is named "Table1"

Code:
Sub Fill_Table()
Application.ScreenUpdating = False
Dim c As Range
    For Each c In ActiveSheet.Range("Table1")
        If c.Value = "" Then c.Value = 0
    Next
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Another option
Code:
Sub BlanksToZero()
Range("[COLOR=#ff0000]Table2[/COLOR]").SpecialCells(xlBlanks).Value = 0
End Sub
Change table name in red to suit
 
Upvote 0

Forum statistics

Threads
1,214,787
Messages
6,121,558
Members
449,038
Latest member
Guest1337

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