How to exit the rule immediately if a rule input is null?
Discussion posts and replies are publicly visible
start withif(isnull(ri!input),
null,
rest of the rule)
Hi cindy,
you can make use of isnull() function to check whether the rulw input is null or not. If it is null then simply return null or {} or "" to get out from the rule.
I hope this might help you