Only sum positive number in a range

getafix40

New Member
Joined
Aug 1, 2014
Messages
49
Hi

This seems so simple but I cannot work it out.

Here is my formula

=SUMIF(StockSheet!$AE:$AE,C1,StockSheet!$AH:$AH)

Where would I place the ">0"

AE is a column of salesman names, C1 is the salesman name and AH are the values I want to add. Sometimes there are negative values that I dont want to add

Regards
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
.
.

Use SUMIFS instead:

=SUMIFS(StockSheet!AH:AH,StockSheet!AE:AE,C1,StockSheet!AH:AH,">0")
 
Upvote 0
If you are using Excel 2007 or a more recent version try

=SUMIFS(StockSheet!$AH:$AH,StockSheet!$AH:$AH,">0",StockSheet!$AE:$AE,C1)

Hope this helps

M.
 
Upvote 0
Thanks for the replies. marcelo's formula worked a treat.

I am assuming the S means multiple criteria in the formula, not just a single criteria.

Cheers
 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

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