Changing Records with Switches(Toggles)

What I Want: I have a screen that contains Toggles that change data within a record in the form of TRUE / FALSE. When the toggle is switched, I don’t want the record to be changed. I want the record to only be changed once the user presses the UPDATE button.

What Currently Happens: The toggles are selected as needed on a Create Record screen. The toggles change items in the User Collection as Logged In User. Then the record is created using the values stored from the Toggles to the User Collection. When the record screen is opened, the Toggles are connected to the Current Record and reveals the position of the saved information….whether that be TRUE or FALSE. If you change the position of the toggle, it automatically changes the record. If the user accidentally changes the Toggle, it automatically changes the record and could slip by the user unnoticed.

Is there a way to change the Toggles, but not save it to the record automatically, but allow the user the ability to UPDATE the record?

Hi @ThunderBlade,

If your user is logged-in: you can create a helper property in Users collection (e.g. HLPSetting), make it boolean, initialize it before going to the target screen - Update Logged In User → HLPSetting → False (or True if you want it checked).
On the target screen connect the toggle to this property.
Update the record in the other collection you want with Update action - copy value from Logged In User → HLPSetting to your target property.

Best,
Victor.