SUMIFS when date cell ISBLANK
I'm trying to add "if date cell is blank" criteria to my SUMIFS formula, but get "INCORRECT ARGUMENT SET"
=SUMIFS({EBOM - 4" CONDUIT QTY}, {EBOM - 4" JOINT TYPE}, "GSK", (ISBLANK({EBOM - ACTUAL PROD DATE})))
What am I doing wrong?
Best Answer
-
You are combining your Range2 + Criteria2 of the EBOM - ACTUAL PROD DATE, you first define the range, then the criteria by separating with a comma (so the #INCORRECT ARGUMENT SET is that you don't have a criteria for the range).
=SUMIFS({EBOM - 4" CONDUIT QTY}, {EBOM - 4" JOINT TYPE}, "GSK", {EBOM - ACTUAL PROD DATE}, ISBLANK(@cell))
The @cell is used because ISBLANK is being used for criteria in an entire range, instead of a specific cell, so you use @cell to tell the formula to look at every cell within that range individually.
Jason Tarpinian - Sevan Technology
Smartsheet Aligned Partner
Answers
-
You are combining your Range2 + Criteria2 of the EBOM - ACTUAL PROD DATE, you first define the range, then the criteria by separating with a comma (so the #INCORRECT ARGUMENT SET is that you don't have a criteria for the range).
=SUMIFS({EBOM - 4" CONDUIT QTY}, {EBOM - 4" JOINT TYPE}, "GSK", {EBOM - ACTUAL PROD DATE}, ISBLANK(@cell))
The @cell is used because ISBLANK is being used for criteria in an entire range, instead of a specific cell, so you use @cell to tell the formula to look at every cell within that range individually.
Jason Tarpinian - Sevan Technology
Smartsheet Aligned Partner
-
That worked! Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.1K Get Help
- 444 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 5K Ideas & Feature Requests
- 83 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!