Sumifs only displaying #value in table lookup

lost_in_the_sauce

Board Regular
Joined
Jan 18, 2021
Messages
128
Office Version
  1. 365
Platform
  1. Windows
Have a data pull for financials, trying to make a repeatable store summary. $ values are on "Data" tab. Trying to collect by 3 categories - month, store name.

=SUMIFS(Data!$J$2:$P$1214,Data!$B$2:$B$1214,Sheet1!$B3,Data!$J$1:$P$1,Sheet1!C$2,Data!$F$2:$F$1214,Sheet1!B2)

Values are in cells J2:P1214, categories are F1:P1, months are B, store is F. So from the table, is should sumifs numbers that have the same store in F, the same month in B, and the same category in row 1. Keep getting the #value error though.
 
If you mean that you only need to sum 1 column from J:P and want to choose that column with INDEX then yes, you could try something like
Excel Formula:
=SUMIFS(INDEX(Data!$J$2:$P$1214,0,MATCH(Sheet1!C$2,Data!$J$1:$P$1,0))Data!$B$2:$B$1214,Sheet1!$B3,Data!$F$2:$F$1214,Sheet1!B2)

If you can have multiple rows and columns that meet the criteria then you need sumproduct.
the sumproduct one works, I'm getting an error here
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Sorry, missing a comma
Excel Formula:
=SUMIFS(INDEX(Data!$J$2:$P$1214,0,MATCH(Sheet1!C$2,Data!$J$1:$P$1,0)),Data!$B$2:$B$1214,Sheet1!$B3,Data!$F$2:$F$1214,Sheet1!B2)
 
Upvote 0

Forum statistics

Threads
1,214,540
Messages
6,120,106
Members
448,945
Latest member
Vmanchoppy

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