IFS SUMIF statement

ericryan9

New Member
Joined
Sep 1, 2017
Messages
2
Hi everyone,

I have a spreadsheet in which I want to assess a fee if the region is "NORAM". The fee will be 1% of the payments made or 1000, whichever is greater. There is something wrong in my statement because no matter which region I choose the 1,000 fee is being populated as opposed to only "NORAM". I'm a pretty basic user of excel so there may be an easier way in which to do this.


=IFS(COUNTA(I26:I41)=0,"0",SUMIF(I26:I41,"NORAM",K26:L41)*0.01>=1000,SUMIF(I26:I41,"NORAM",K26:L41)*0.01,SUMIF(I26:I41,"NORAM",K26:L41)*0.01<1000,1000)


Thanks for your help!
 

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
Re: IFS SUMIF statement help

ericryan9, Good evening.

Try to use:

=IF(COUNTA(I26:I41)=0,0,MAX(SUMIF(I26:I41, "NORAM", K26:K41)*0.01, 1000))

Ist's working as you desire?
I hope it helps.
 
Upvote 0
Re: IFS SUMIF statement help

Thank you very much for your help Marcílio, I am probably not explaining it correctly. The range (I26:I41) has a drop down of several regions and seems to populate the $1000 no matter what region I choose. I'd like it to only apply to the "NORAM" region. Any other suggestions?
 
Upvote 0

Forum statistics

Threads
1,215,470
Messages
6,124,993
Members
449,201
Latest member
Lunzwe73

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