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

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
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,221,525
Messages
6,160,329
Members
451,637
Latest member
hvp2262

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