Formula Error
Hi,
I can't seem to know where the error on the formula is. Or am I just using the wrong one.
What I would like is that if there is not date on the Actual Completion Date, for it to be 0. If there is a Date, to enter the month number.
=IF(NOT(ISBLANK([Actual Completion Date]@row), "", IF(ISBLANK([Actual Completion Date], 0) @row), "", MONTH([Actual Completion Date]@row)))
Best Answer
-
I think you may have over complicated it @dnavarrete
Does this do what you want?
=IF(ISBLANK([Actual Completion Date]@row), 0, MONTH([Actual Completion Date]@row))
IF Actual Completion Date is blank it returns 0.
If it it not blank it returns the month number from Actual Completion Date.
Answers
-
I think you may have over complicated it @dnavarrete
Does this do what you want?
=IF(ISBLANK([Actual Completion Date]@row), 0, MONTH([Actual Completion Date]@row))
IF Actual Completion Date is blank it returns 0.
If it it not blank it returns the month number from Actual Completion Date.
-
Thanks KPH.
It did work.😊
-
Great news! I'm glad I could help.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.4K Get Help
- 424 Global Discussions
- 221 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!