Aug 18, 2020 01:51 AM
Trying to automate adding/remove users from systems. Working fine… except I can’t understand how to get a “forever” value to return “KeepUser” while using this formula.
IF(IS_AFTER({Time math}, {Now}),“KeepUser”, “RemoveUser”)
My select values are all numbers, except “forever”. I’d like to keep it as a text option, but I’m not sure how to get around this in a formula?
Solved! Go to Solution.
Aug 18, 2020 06:00 AM
Give this a try:
IF({Length of Time} = "forever", "KeepUser", IF(IS_AFTER({Time Math}, {Now}),"KeepUser", "RemoveUser"))
Here’s the field definition:
Aug 18, 2020 06:00 AM
Give this a try:
IF({Length of Time} = "forever", "KeepUser", IF(IS_AFTER({Time Math}, {Now}),"KeepUser", "RemoveUser"))
Here’s the field definition: