The condition uses the .equal(β¦) to check if it meets the specified condition.
example tags
formula
ifs(
prop("Priority").equal("High"), "", prop("Priority").equal("Medium"), "", "")
-
Here, letβs say the property Priority is set to High.
-
In this example, if Priority, the Status property, equals "High", it will return "". If the "Priority" equals "Medium", it will return "". If neither conditions are met, it will return "".