From the when the checkbox is ticked, do you want to change the sign off to another option? if so then
On the Travel status textbox default put: If(Checkbox1.Value,"Sign off"," ")
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Thanks.
I want to change the Travel Status field to the value selected in the radio button if the checkbox is checked.
With that understanding,
Set a variable OnVisible of the screen to store the selected item:
Hi @andygp25
set the Checkbox OnSelect property to Patch() the record, something like:
Patch(datasource,ThisItem, {travelstatus:Radio.Selected.Value})
For the checkbox to stay checked you will have to have a field in your datasource, like "checked", to save it to as a true or false and have the default property of the checkbox reflect that field. You will also need to add that to the Patch. If that isn't necessary, you could just put an icon in the gallery with the Patch() as its OnSelect property.
Patch(datasource,ThisItem, {travelstatus:Radio.Selected.Value,checked:true})
User | Count |
---|---|
231 | |
109 | |
94 | |
58 | |
29 |
User | Count |
---|---|
291 | |
126 | |
106 | |
62 | |
57 |