Hi, hope someone can help me with my problem.
I have an Icon that has the following code in its 'DisplayMode' property;
If(IsBlank(TextInput_1) ||
IsBlank(TextInput_2) ||
IsBlank(TextInput_3) ||
IsBlank(ComboBox_1) ||
IsBlank(ComboBox_2) ||
IsBlank(ComboBox_3), DisplayMode.Disabled, DisplayMode.Edit)
This works as when all the text inputs and comboboxes are filled the icon is then visible. However, I would also like to introduce the following statement into to the above code;
If(IsBlank(ComboBox_4) || IsBlank(TextInput_4),DisplayMode.Disabled, DisplayMode.Edit)
So basically the above statement is assessed on its own and then the result is assessed along with the other statements. Example below (which doesn't work);
If(IsBlank(TextInput_1) ||
IsBlank(TextInput_2)||
IsBlank(TextInput_3)
IsBlank(ComboBox_1) ||
IsBlank(ComboBox_2) ||
IsBlank(ComboBox_3) ||
If(IsBlank(ComboBox_4) || IsBlank(TextInput_4)),
DisplayMode.Disabled, DisplayMode.Edit)
I've tried various other ways but just can't get it to work. Any help appreciated.
Regards