Default zero number in a cell

Yaghoub61

New Member
Joined
May 1, 2019
Messages
7
Hello,

I want a zero number in the cell A1
When a data was entered in the cell A1
I deleted it later
The zero number is entered in the cell by default.

Thank you in advance



 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Unclear.

Cells can contain a value or a formula, not both.

If you enter 0 in A1 it will overwrite any previous formula the cell held.
If you want it to work this way you need to use VBA, of which I;m not an expert.'

Provide some examples to clarify what you are after.
 
Upvote 0
This piece of code chenges the value of set range to 0:
Code:
Range("A1:C25").Value = 0
I'm sure you know / will figure our how to adjust the range of cells to match your needs.
 
Upvote 0

Forum statistics

Threads
1,213,487
Messages
6,113,941
Members
448,534
Latest member
benefuexx

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