Morning All! Hope you're well!
Here is my issue.
I have 3 drop boxes with 3 options
1)"-"
2)"Yes"
3)"No"
I have a button that I would like to remain disabled until all 3 checkboxes have selected an option apart from "-"
I already have another button that will be visible if all dropdowns have "Yes" but I also need to make sure that if the user selects "No" for any of these dropdowns this button will then be selectable. By default, all dropdowns are reset to "-" as default and I would like the button to remain disabled until each dropdown has been used.
If(Signatory_OnPost_Dropdown.Selected.Value="-") && (Signatory_Powered_Dropdown.Selected.Value="-") && (Signatory_Connected_Dropdown.Selected.Value="-",DisplayMode.Edit,
DisplayMode.Disabled
)
Solved! Go to Solution.
Heya!
Ok, so I'm thinking its just that we've got the disabled/edit swapped around and we want it that if Any of those items is still set to "-" then the button cant be enabled right?
If(
Signatory_OnPost_Dropdown.Selected.Value="-"
||
Signatory_Powered_Dropdown.Selected.Value="-"
||
Signatory_Connected_Dropdown.Selected.Value="-",
DisplayMode.Disabled,
DisplayMode.Edit
)
Could you try this and let me know if that works for what you wanted?
Cheers,
Sancho
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Heya!
Ok, so I'm thinking its just that we've got the disabled/edit swapped around and we want it that if Any of those items is still set to "-" then the button cant be enabled right?
If(
Signatory_OnPost_Dropdown.Selected.Value="-"
||
Signatory_Powered_Dropdown.Selected.Value="-"
||
Signatory_Connected_Dropdown.Selected.Value="-",
DisplayMode.Disabled,
DisplayMode.Edit
)
Could you try this and let me know if that works for what you wanted?
Cheers,
Sancho
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Ha, yes! I just figured it out and came back to answer my own question! 😂
Glad what I did was what you replied with!
If(Signatory_OnPost_Dropdown.Selected.Value = "-" || Signatory_Powered_Dropdown.Selected.Value = "-" || Signatory_Connected_Dropdown.Selected.Value = "-", DisplayMode.Disabled,DisplayMode.Edit)
User | Count |
---|---|
198 | |
121 | |
85 | |
50 | |
42 |
User | Count |
---|---|
284 | |
157 | |
134 | |
73 | |
72 |