Formula Question
I am using this formula to calculate the % of budget used to date on a project:
=[Actual Hours]@row / [Planned Hours]@row. Some of our projects do not have the planned number of hours. In this case the cell for planned hours would either be 0 or NULL and I would like the % of budget cell to display: "No Planned Hours Available". I have not been able to successfully achieve this using IFERROR statement. Does anyone know how I can accomplish this?
Best Answer
-
@Kit Sullivan Try this.
=IF(OR([Planned Hours]@row = 0, ISBLANK([Planned Hours]@row)), "No Planned Hours Available", [Actual Hours]@row / [Planned Hours]@row)
Isis Taylor
Business Analyst Senior
Answers
-
@Kit Sullivan Try this.
=IF(OR([Planned Hours]@row = 0, ISBLANK([Planned Hours]@row)), "No Planned Hours Available", [Actual Hours]@row / [Planned Hours]@row)
Isis Taylor
Business Analyst Senior
-
@Isis Taylor Thank you so much!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!