I didn't mean to confuse things.
I have visual concept clarity issues.
It takes my time to see some things.
The table I referenced was created in a flow, for another pupose - you are correct I apologize.
Set(varVisible, LookUp(UserSettings, AppUserName = User().Email).varVisible);
Set(dispToggle, LookUp(UserSettings, AppUserName = User().Email).dispToggle);
Set(defaultLocation, LookUp(UserSettings, AppUserName = User().Email).defaultLocation);
Merely placing the above n the OnStart is going to force Toggle1 to default to the closed position when the app was last saved, yes? There is nothing else I need to do?
I've made a few edits to match my fields. Should the below deliver the outcome I desire?
Set(varVisible, LookUp(UserSettings, AppUserName = User().FullName).varVisible);
Set(Toggle1, LookUp(UserSettings, AppUserName = User().FullName).Toggle1);
Set(defaultLocation, LookUp(UserSettings, AppUserName = User().FullName).defaultLocation)