Would like autosum cell to show blank

Arfon

New Member
Joined
Feb 11, 2016
Messages
6
Hi.
A bit of help please..... :)

I have cell I3 which is an Autosum of cells B3 to H3. Though nothing is populated in B3-H3 currently, I3 still shows 0.00.
However I would like I3 to show nothing until B3-H3 is populated.

Any views please?
thanks
Arfon
 

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

=if(sum(B3:H3)=0,"",sum(B3:H3))
 
Upvote 0
=IF(COUNT(B3:H3)=0,"",SUM(B3:H3))
or just format cell I3 as "0.00_);(0.00);" (no quotes
 
Upvote 0
If B3 has 3 and C3 has -3, you'd show nothing in I3 with your formula, where I think the user would want to see the 0.00
 
Upvote 0
If B3 has 3 and C3 has -3, you'd show nothing in I3 with your formula, where I think the user would want to see the 0.00

good point, it would work with -ve nos
 
Upvote 0

Forum statistics

Threads
1,214,974
Messages
6,122,536
Members
449,088
Latest member
RandomExceller01

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