I need to determine if a date column is blank then it returns a message
Hello,
I want help with a formula to return a message that says met goal if the date is blank or did not meet if the date is populated. I tried this formula but it is not working it returns #Unparseable
=IF(ISDATE([Request Intake Range 9]1:[Request Intake Range 9]22), "met goal", "did not meet")
So essentially I want to say if the cell has a date populated then this message will be shown
thank you,
Answers
-
Hi,
This could be done, but there are a couple caveats.
- Date columns cannot hold a formula. The formula will have to be on another column for that row and could be even converted to be Column Formula.
- The actual column were the date is supposed to be entered would be best to limit to dates only. This can be done through properties on that column with a checkmark "Restrict to dates only".
Assuming that the values need to be checked per row, the below formula should work to provide the desired effect:
=IF([Request Intake Range 9]@row = "", "did not meet", "met goal")
-
Thank you! Its actually for a metrics sheet that is referencing another table so hopefully this yields what I want. It's for a summary
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67K Get Help
- 442 Global Discussions
- 154 Industry Talk
- 503 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 156 Just for fun
- 79 Community Job Board
- 512 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!