replace empty cells with 0

danno_mbk

Board Regular
Joined
Sep 6, 2004
Messages
102
I am trying to replace all empty cells with a 0 value in a worksheet? Can anyone help please ?

Also can this be customised to complete the task with a selected range ?
thanks
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Sure

Select the area you want to do this to (or ctrl + A for the whole sheet)

Edit / goto / special / blank cells

type "0" then press CTRL & Enter together.

Hope this helps

Tamer
 
Upvote 0
Well done 'The Tamer' :wink:

Nevertheless, danno_mbk, if you want a macro do it for you, use the code below:

Public Sub ReplNullWithZero()
Dim c As Range
On Error Resume Next
Set c = Selection.SpecialCells(xlCellTypeBlanks)
On Error GoTo 0
If Not IsEmpty(c) Then
c.Value = 0
End If
End Sub

Ciao :nya:
 
Upvote 0

Forum statistics

Threads
1,222,900
Messages
6,168,926
Members
452,227
Latest member
sam1121

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