Need Help with Formula for Metrics
Hi,
I am stumped at a formula for this sheet. Please see picture below. I am trying to calculate an action taken goal where we take the levels standard, urgent, and immediate and the action taken days. The parameter is for standard 3 days, urgent 1 day, and immediate 0 days. I want in the action taken goal column the words "met goal or "did not meet" goal based on those parameters. But I am stumped on how to write the formula. For example, if standard is less than or equal to 3 then met goal, Urgent 1 or less met goal, and immediate 0 days met goal. Otherwise it would say did not meet.
Similar to what I did in this section, but the above involves more factors.
If anyone has any suggestions please let me know!
Best Answer
-
Hi @HFletcher
Give this formula a shot:
=IF(AND(Level@row = "Standard", [Action Date Days]@row <= 3), "Met Goal", IF(AND(Level@row = "Urgent", [Action Date Days]@row <= 1), "Met Goal", IF(AND(Level@row = "Immediate", [Action Date Days]@row <= 0), "Met Goal", "Did Not Meet")))
-MS
Answers
-
Hi @HFletcher
Give this formula a shot:
=IF(AND(Level@row = "Standard", [Action Date Days]@row <= 3), "Met Goal", IF(AND(Level@row = "Urgent", [Action Date Days]@row <= 1), "Met Goal", IF(AND(Level@row = "Immediate", [Action Date Days]@row <= 0), "Met Goal", "Did Not Meet")))
-MS
-
Yes! Thank you that worked
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 459 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 138 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!