Add Dates Based on Conditions
Hi,
I'd figure out on how to add date based on condition, but now I would like to add date based on the condition I chose. For example, if I chose "Low" than 30-Days from Date Entered, but if I chose "Moderate" than 60-Days from Date Entered. I think this is a If(Or but I am not sure. See below sample.
Hopefully this make sense.
Thanks!
Best Answer
-
Just a nested if statement needed:
IF([Inspection Severity]@row = "Low", [Date Entered]@row + 30, IF([Inspection Severity]@row = "Moderate", [Date Entered]@row + 60
and so on until you have all your conditions.
Answers
-
Just a nested if statement needed:
IF([Inspection Severity]@row = "Low", [Date Entered]@row + 30, IF([Inspection Severity]@row = "Moderate", [Date Entered]@row + 60
and so on until you have all your conditions.
-
@Nic Larsen -That did it, I was trying the same but was adding the wrong symbol after dates. thank you so much for the help and quick response.😊
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.9K Get Help
- 474 Global Discussions
- 207 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!