web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id : JSILfwSOwX9rHrSC7ECQT3
Power Apps - Building Power Apps
Answered

Check if variable are filled then true or false

Like (1) ShareShare
ReportReport
Posted on 11 Jul 2024 08:12:57 by 115

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)

 

  • NielsNachtegaal Profile Picture
    115 on 11 Jul 2024 at 09:35:04
    Re: Check if variable are filled then true or false

    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)

     

  • NielsNachtegaal Profile Picture
    115 on 11 Jul 2024 at 08:42:29
    Re: Check if variable are filled then true or false

    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

  • Verified answer
    mmbr1606 Profile Picture
    13,290 Super User 2025 Season 2 on 11 Jul 2024 at 08:17:26
    Re: Check if variable are filled then true or 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

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.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2