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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!