Hi,
I have a form that supposed to not let user to submit until the relevant fields have been filled up. Let me picture a clearer context on this situation:
General Field: Field A (text), B (text), C (text), D (lookup dropdown) are compulsory to be filled/ selected.
The lookup dropdown Field D let users to select a certain 'Instrument' and based on the instrument other fields E, F, G, H will be show/ hide based on the selected 'instrument'.
Example: 'Instrument 1' selected - Field E show
'Instrument 2' selected - Field F show
If Instrument 2 is selected, Field E will be hidden and user don't need to fill it up.
My current formula only able to disable the submit button if the general field A, B, C, D are not filled up. I tried to fit in the rest of the Field EFGH, but I realized using && or || doesn't work for these non-general field. Is there any other way that I can disable them?
Here's a sample of my current formula:
If(!IsBlank(A) && !IsBlank(B) && !IsBlank(C) && !IsBlank(DateValue2_1) && !IsBlank(D.Selected), DisplayMode.Edit,DisplayMode.Disabled)
Thank you.