how to correctly write the judgement expression for couple of items with null value inside?

as title, i want express if isnull(backuppricingaudit) then don't do anything with it. Without foreach loop, how to express it?

  Discussion posts and replies are publicly visible

Parents Reply
  • This is correct, but I highly recommend that you use both the isnull and length checks. Even if this specific scenario works with checking if length is 0, there are many other scenarios that are triggered if the value is null. Personally the first rule I build (or import as a common object) is a rule for "isNullOrEmpty" that checks both if the value is null OR empty. Spoiler alert - there is also an out-of-the-box function that does both these checks coming in 21.4 Slight smile

Children