Announcements
Hi,
I am wondering if it's possible to check multiple variable are not blank, with multiple variable nested as Or.
something like this:
If(IsBlank(var_A) +
IsBlank(var_B) And
IsBlank(var_1 || var_2),
true, false)
hey @NielsNachtegaal
try this please:
If( And( IsBlank(var_A), IsBlank(var_B), Or( IsBlank(var_1), IsBlank(var_2) ) ), true, false )
Let me know if my answer helped solving your issue.If it did please accept as solution and give it a thumbs up so we can help others in the community.Greetings
Thanks for the response @mmbr1606,
I might not explained it right, With your example the Or part only works, if all within the Or part are not blank.
What I try to do is a couple of variables are seperatly filled, and combined with a nested group of variables of witch only one need to be filled, to give a true
Thanks, @mmbr1606
After some tweaking I Got it to work,
If(IsBlank(var_A)+
IsBlank(var_B) +
IsBlank(var_C) +
Or(IsBlank(Var_1) And IsBlank(var_2));
true; false)
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our community stars!
Expanding mentorship, skilling, and AI innovation
These are the community rock stars!
Stay up to date on forum activity by subscribing.
WarrenBelz 325 Most Valuable Professional
11manish 165
MS.Ragavendar 88 Super User 2026 Season 1