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

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
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
[TABLE="width: 383"]
<colgroup><col width="383"></colgroup>[TR]
[TD="width: 383"]=IF(ISNUMBER(F10),"Your error msg.",SUM(B10:D10))[/TD]
[/TR]
[/TABLE]
 
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,223,911
Messages
6,175,337
Members
452,637
Latest member
Ezio2866

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