Greetings and Happy New Year-ish!
I have what I think should be a simple request, but I can't seem to figure it out. Ha.
I have a request form and I would like to have 2 things validated before the submit button displays. I have the first one, but I guess I can't figure out how to combine these two:
1. I have a toggle to accept the terms. This works fine by itself.
If(TermsButton.Value = false, DisplayMode.Disabled,DisplayMode.Edit)
2. I would like to add, If Checkbox1 = false then the same for display mode(s).
So in order for the submit button to display, then both Terms Button and Checkbox should be true.
I hope I explained that ok.
Thanks for any assistance.
Solved! Go to Solution.
Hi @Anonymous
Can you try to update the expression as:
If(TermsButton.Value && CheckBox1.Value, DisplayMode.Edit,DisplayMode.Disabled)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @Anonymous
Can you try to update the expression as:
If(TermsButton.Value && CheckBox1.Value, DisplayMode.Edit,DisplayMode.Disabled)
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
Hi @Anonymous ,
Please try:
If(TermsButton.Value && Checkbox1.Value, DisplayMode.Edit, DisplayMode.Disabled)
So the button will be disabled until the toggle button will be ON (true) and the Checkbox1 will be checked (true).
Hope it helps !
Thank you! That worked perfectly.
@Anonymous
I am glad that your issue is resolved. Please mark the thread as solved, so that it is useful for others as well.
Hope this Helps!
If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up. THANKS!
User | Count |
---|---|
252 | |
106 | |
95 | |
50 | |
39 |