Totaling formula help

Sintheticxtac

New Member
Joined
May 1, 2016
Messages
12
Alright guys, I have a running log that averages numbers. For example I have =SUM(B10+C10+D10). That gives me my sum in E10. I also have a column in F10 which I DO NOT want included into that some, HOWEVER, occasionally that column gets an entry on it's own, producing a SUM of 0.000 in the D column. How can I stop this from producing that SUM of 0.000? We have a few employees messing up their averages because they aren't considering that 0.000, so any help with this would be appreciated. Thanks in advance guys! :):):):)
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
So the issue is they enter the value in column F instead of D?
If so maybe something like this:
Excel Workbook
BCDE
101225Some Error Msg
Sheet


Or
=IF(ISNUMBER(F10),"Your error msg.",SUM(B10:D10))

<colgroup><col width="383"></colgroup>
 
Upvote 0
@Sintheticxtac, your post says that people are messing up their "average," but I only see a SUM(), not an AVERAGE(). It seems to me that, if you're trying to average those cells but not include a possible zero inclusion, you'd need this somewhere:

Code:
=AVERAGEIF(B10:D10,">0")
 
Upvote 0

Forum statistics

Threads
1,215,697
Messages
6,126,269
Members
449,308
Latest member
VerifiedBleachersAttendee

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