Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
FORMULA - Estimated vs Actual Time
FORMULA HELP NEEDED
(See Screenshot)
I need help creating a formula to show:
IF "Actual Time" Column is 10% more than "Estimated Time" Column, then "ERP vs ACTUAL" Column shows "DOWN" Symbol
IF Not, shows "UP" Symbol.
Times are entered in minutes (00.00)
Thanks in advance!
This is what I currently have:
=IF(AND([Actual Time]1 > [ERP Time]1 * 1.1), "Down", "Up")
It works for the most part BUT it doesnt show the "down" symbol if the "Actual Time" is exactly 10% greater than "ERP Time"
Comments
-
Change you condition to use >= instead of just > and then exactly 10% will match.
-
Thanks Adam! Only problem here is, it now turns red when its Blank. How can I prevent that?
-
Try this:
=IF(Isblank([Actual Time]1),"", IF(AND([Actual Time]1 > [ERP Time]1 * 1.1), "Down", "Up"))
-
Even better, try this:
=IF(OR(ISblank([Actual Time]1),ISblank([ERP Time]1)),"", IF(AND([Actual Time]1 > [ERP Time]1 * 1.1), "Down", "Up"))
That way the field will be blank if you are missing time in either column.
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 405 Global Discussions
- 215 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives