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

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
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,215,777
Messages
6,126,834
Members
449,343
Latest member
DEWS2031

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