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.