Sumifs Formula with Wildcard Issues

Yankeesguy1990

New Member
Joined
Jun 12, 2024
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Hi everyone,

I am stuck on a sumifs formula that is pulling data based a date range. I am trying to add another criteria at the end but get a value error when I do. I want to sum the values between two date ranges and if column A starting at row 13 says "Actuals". Any insight would be greatly appreciated!

Below are the two formulas with screenshots showing when it works and when it doesn't.

This formula works: =SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5)

1718223828556.png


But this one doesnt: =SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,A13:A26,A7)

Below is a screenshot from Excel.

1718223757077.png
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Well, your criteria ranges must be the same size.. so
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,A13:A26,A7)
should at least be:
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,A13:A945,A7)

But, the word actuals is not even in that range. If you want to just start and grab all the data below Row13
then maybe something like:
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,Row(A13:A945),">=13") But that would be the same as not having that criteria at all.
 
Upvote 0
Well, your criteria ranges must be the same size.. so
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,A13:A26,A7)
should at least be:
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,A13:A945,A7)

But, the word actuals is not even in that range. If you want to just start and grab all the data below Row13
then maybe something like:
=SUMIFS(D13:D945,C13:C945,">="&B4,C13:C945,"<="&B5,Row(A13:A945),">=13") But that would be the same as not having that criteria at all.
ah I didnt realize it needed to be the same size but makes sense. I was able to get it to work based on that. Thanks!
 
Upvote 0

Forum statistics

Threads
1,224,816
Messages
6,181,139
Members
453,021
Latest member
Justyna P

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