I’ve been playing with a chatgpt trained for appsheet. After describing a problem wherein I want to store a usersetting value for use later, it recommended that I use an open a different view action with a target of: CONCATENATE(“#view=Select Props&defaults=CurrentSceneID=”, [SceneID]). It doesn’t seem to be working but there could be other reasons for that. So my question is, is this sort of url parameter supposed to work?
Can you elaborate on this need? If a value is stored in usersettings, you can use [_THISUSER]. or USERSETTINGS() to get the value.
The “defaults” url argument is how something like LINKTOFORM works. You can manually generate such a url to mimic a LINKTOFORM, for example if you’re coming into the app from outside of it, like from an email. But you have to get the format just right.
Yes, the desire is to set the usersetting value, not to access it.
Oh, gotcha. No, you won’t be able to do that, because the user settings record already exists. LINKTOFORM and the defaults argument are only for new records.