Macro to set blank cells for to zero for several columns

zach9208

Board Regular
Joined
Dec 15, 2015
Messages
117
I need help modifying this code. I want to set any blank values in column A to zero. This macro works for this but I have to specify the range. I want the range to select all of the data in the column. ie. if the last cell was A563 I want the macro to be only applying this change from cells A1:A563. I also have several other columns (C, F, G) that I want this macro to work on.

Code:
Sub test()

Dim cell As Range


For Each cell In Range("A1:D10")
    If Len(cell.Value) = 0 Then
        cell.Value = 0
    End If
Next


End Sub
 

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
like this
Code:
Sub test2()
Dim cell As Range
For Each cell In Range("A1", Cells(Rows.Count, 1).End(xlUp))
    If Len(cell.Value) = 0 Then
        cell.Value = 0
    End If
Next
End Sub
 
Last edited:
Upvote 0
this is actually faster if you have many rows and there are no formulas.

Code:
Sub t()
Range("A2", Cells(Rows.Count, 1).End(xlUp)).SpecialCells(xlCellTypeBlanks) = 0
End Sub
 
Last edited:
Upvote 0
Neither one of these codes worked for me.

this is actually faster if you have many rows and there are no formulas.

Code:
Sub t()
Range("A2", Cells(Rows.Count, 1).End(xlUp)).SpecialCells(xlCellTypeBlanks) = 0
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,864
Messages
6,121,984
Members
449,058
Latest member
oculus

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