Sumif with format problem

drluke

Active Member
Joined
Apr 17, 2014
Messages
314
Office Version
  1. 365
Platform
  1. Windows
I'm trying to use a sumifs:

SUMIFS('Sheet 1'!$R:$R,'Sheet 1'!$A:$A,A1,'Sheet 1'!$C:$C,$G$6)

A1 in my first lookup criteria is the month of the year written as 1 for Jan, 2 for Feb etc. However in Sheet 1 the months of the year is written in the yyyy/m format for Jan-Sept, and yyyy/mm for Oct-Dec.

How can I change/add to the sumifs to ignore the yyyy when it looks at that criteria?
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
Hi,

Try this:

=SUMPRODUCT((MONTH('Sheet 1'!$A:$A)=A1)*('Sheet 1'!$C:$C=$G$6)*'Sheet 1'!$R:$R)

I strongly suggest Not using Entire Column references (that's over 1 million rows for the formula to work on), but limit the range to something you Know is larger than you need, i.e. $A1:$A10000
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,327
Members
452,635
Latest member
laura12345

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