Working on a canvas app with a SPList. The SPList has columns for data, one including a Location Choice column. The choices are Chicago or Atlanta (may include more sites later on).
Screen 1 has 2 buttons to select the location.
Button1 OnSelect property: Set(varSite, "Chicago")
Button2 OnSelect property: Set(varSite, "Atlanta")
Screen 2 has the form, including the datacard for the site. For the dropdown's Default property I put in the following:
LookUp(Choices(SPList.Location),Value=varSite) (i've also tried Text = varSite which doesn't work)
For the DataCard's Update property, I put in the same thing.
This does not save the information. If I add a .Value at the end of the Default and Update properties, I get this error:

I was using this solution to help--which looked like it would, but it is not saving the data. I've tried patching the variable as well, which isn't working. I'm out of ideas on how to have it default to the global variable's data as the selection for the drop-down. Help!