Skip to main content

Notifications

Power Apps - Building Power Apps
Answered

Displaymode disabled based on multiple criteria

Posted on by 79

 

I have a number of buttons i need to disable on multiple conditions. if any or all of the variables below are true button should be disabled?

 

If i use just one variable the button is disabled, its just when i want to add more than one

Works as a single condition: If(var_R1_C_1_1_remove,DisplayMode.Disabled,DisplayMode.Edit)

 

how to make it work with the below.

If(var_R1_C_1_1_remove,DisplayMode.Disabled,DisplayMode.Edit)||
If(var_R1_C_1_3_remove,DisplayMode.Disabled,DisplayMode.Edit)||
If(var_R1_C_1_4_remove,DisplayMode.Disabled,DisplayMode.Edit)||
If(var_R1_C_1_5_remove,DisplayMode.Disabled,DisplayMode.Edit)||
If(var_R1_C_1_6_remove,DisplayMode.Disabled,DisplayMode.Edit)||
If(var_R1_C_1_7_remove,DisplayMode.Disabled,DisplayMode.Edit)

 

Thanks in advance.

  • Mclean2023 Profile Picture
    Mclean2023 79 on at
    Re: Displaymode disabled based on multiple criteria

    Thank you, that worked perfectly.. 🙂

  • Verified answer
    Selvarokith_B Profile Picture
    Selvarokith_B 82 on at
    Re: Displaymode disabled based on multiple criteria

    Hi @Mclean2023 

    Try this code

     

    If(
    Var1 = false || Var2 = false || Var3 = false,
    DisplayMode.Disabled,
    DisplayMode.Edit
    )

     

    Thanks

     

    If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.

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

November 2024 Newsletter…

November 2024 Community Newsletter…

Community Update Oct 28…

Power Platform Community Update…

Tuesday Tip #7 Community Profile Tips…

Welcome to a brand new series, Tuesday Tips…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 143,487

#2
RandyHayes Profile Picture

RandyHayes 76,308

#3
Pstork1 Profile Picture

Pstork1 64,014

Leaderboard