SUMIFS question

mikeolson

New Member
Joined
Oct 22, 2018
Messages
7
I'm trying to return values from cells that the cell to the left contains specific text, and total them. I'm unsure on how to get this formula to work. I have more than one criteria that needs to be met, and totals for each of those criteria.

=SUMIFS(B36:B43,A36:A43, "TURN", SUMIFS(F36:F43,E36:E43, "TURN", SUMIFS(J36:J43, I36:I43, "TURN")))

This formula would be in a cell next to TURN. I have a copy saved that I can upload to show you.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
for example, if you had six column A-E

and hose 6 columns A C and E randomly contained the word turn

while B D and F had numbers

the formula would be a follows

Code:
=SUMIF(A2:A6,"TURN",B2:B6)+SUMIF(C2:C6,"TURN",D2:D6)+SUMIF(E2:E6,"TURN",F2:F6)

can also put *turn* for ones that are not ONLY turn but like a phrase containing it
 
Upvote 0
for example, if you had six column A-E

and hose 6 columns A C and E randomly contained the word turn

while B D and F had numbers

the formula would be a follows

Code:
=SUMIF(A2:A6,"TURN",B2:B6)+SUMIF(C2:C6,"TURN",D2:D6)+SUMIF(E2:E6,"TURN",F2:F6)

can also put *turn* for ones that are not ONLY turn but like a phrase containing it

Thank you, that's perfect!
 
Upvote 0

Forum statistics

Threads
1,223,910
Messages
6,175,318
Members
452,634
Latest member
cpostell

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