Can somebody help trying to read only data from this Month
Hi
My plan is to bring data from the current month, from a different sheet using cross sheets formulas. My code below is not working any idea why? It says #UNPARSEABLE
Any help is much appreciated
=SUMIF({Actual Completion Date}@row)=MONTH(TODAY()),({Completed Jobs Value})
Answers
-
It looks like there are a few syntax errors here that we can iron out. For the CRITERIA portion after the first range, we need to state that you're looking for the MONTH in each cell (@cell) of that column to see if it equals today's month.
MONTH(@cell) = MONTH(TODAY())
However we can sometimes get errors with the MONTH function if there are blank cells in the range, so lets add an IFERROR statement, like so:
IFERROR(MONTH(@cell), 0)
Try this:
=SUMIF({Actual Completion Date}, IFERROR(MONTH(@cell), 0) = MONTH(TODAY()), {Completed Jobs Value})
Let me know if this works!
Cheers,
Genevieve
Need more information? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao!👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.3K Get Help
- 462 Global Discussions
- 156 Industry Talk
- 506 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 81 Community Job Board
- 517 Show & Tell
- 35 Member Spotlight
- 3 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!