Dark0Prince
Active Member
- Joined
- Feb 17, 2016
- Messages
- 433
So I'm trying to make this SUMIFS show me results from July2016 through November2016
This one works
This one doesn't bring any results and should
To explain the code a little bit I'm pulling results from the D column on COLJUD sheet for anything greater then month 11 that appears in the A column and Greater then Month 7 also in A column in the year 2016 that appears in M column. O column on COLJUD sheet must match a specific client number in $b$5. These are all true and still zero results.
This one works
Code:
=SUMIFS(COLJUD!D:D,COLJUD!A:A,12,COLJUD!M:M,2016,COLJUD!O:O,$B$5)
This one doesn't bring any results and should
Code:
=SUMIFS(COLJUD!D:D,COLJUD!A:A,"<="&11,COLJUD!A:A,">="&7,COLJUD!M:M,2016,COLJUD!O:O,$B$5)
To explain the code a little bit I'm pulling results from the D column on COLJUD sheet for anything greater then month 11 that appears in the A column and Greater then Month 7 also in A column in the year 2016 that appears in M column. O column on COLJUD sheet must match a specific client number in $b$5. These are all true and still zero results.