SUMIF Multiple Columns based on criteria next to each cell

joey_cava2024

New Member
Joined
May 7, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Wanting to see if there was a solution to sum cells across multiple columns based on criteria next to the value.
I have previously added multiple SumIF formulas together however the data spreads across too many columns.

Totat 1Criteria 1Totat 2Criteria 2Totat 3Criteria 3Totat 4Criteria 4Totat 5Criteria 5
$ 4,000a$ 5,000b$ 15,000c$ 10,000a$ 20,000a

A to equal $34,000
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Maybe
Book1
ABCDEFGHIJ
1Totat 1Criteria 1Totat 2Criteria 2Totat 3Criteria 3Totat 4Criteria 4Totat 5Criteria 5
2$4,000a$5,000b$15,000c$10,000a$20,000a
3
4
534000
Sheet7
Cell Formulas
RangeFormula
A5A5=SUM(IF(B2:J2="a",A2:I2,0))
 
Upvote 1
Another option
Excel Formula:
=SUMIFS(A2:I2,B2:J2,"a")
 
Upvote 0

Forum statistics

Threads
1,216,116
Messages
6,128,932
Members
449,480
Latest member
yesitisasport

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