Hi Team,
I'm needing help with an IF/IF-AND statement. I want the button to be disabled if two conditions are not met. The conditions are:
1. A dropdown box value is selected
2. A form is valid.
I am able to have the button work just running with the condition: If(Form1.Valid, DisplayMode.Edit,DisplayMode.Disabled)
So I am naturally trying this with no success:
If((IsEmpty(DataCardValue39.SelectedItems.Value)) & (Form1.Valid), DisplayMode.Edit, DisplayMode.Disabled)