
Hi Community,
I have a toggle control for a field "Require Sign-off" which when selected or checked should alter a choice column field "Report Owner Approval to "Not Applicable"- how do do that?
Not Applicable is the default value of this column in SP list. But if this item was previously approved- it shows approve, i want it to turn to Not Applicable if we are requesting another approval.
Please help, thanks
The field i am trying to change is this DataCardValue26 which is Report Owner Approval- which should now become "Not Applicable" because the above field "Requires Report Owner Sign-off" was checked.
Please suggest the property that i should change!
You can't modify the selection on a data card directly. What you can do is set a variable when you toggle the switch and then set the parent of the dropdown (the data card at this point).default to be equal to that variable. Like this. In the OnCheck property of the toggle set this
Set(varToggled, {Value:"Not Applicable"})
In the Uncheck do the same thing for a different default value.
Then set the data card default (the parent not the dropdown) default to the following. You'll have to unlock the card to do it.
varToggled