Hello,
I have an app that is integrated with a sharepoint list. In the sharepoint list there is a column named "Vendor", it is a 'Singe Line of Text' type column and when it was first created, it was called "Vendor3".
In the app, for the Vendor field, I'm using a combo box, to pull in choices from another sharepoint list.
At first, when creating an item, everything worked great. However, when editing an item, if the Vendor field wasn't re-entered or re-selected, it would clear it self once submitted. Saving a blank value.
I noticed, on the EditScreen, in the card for the Vendor field, the DataField property was set to"Vendor3"
I changed this to "Vendor", and it would then retain it's value when not re-entered/re-selected - however, now it will retain it's value even when trying to overwrite it.
*Also, in the card, under DisplayName & MaxLength, I can see the former column name as well:
DataSourceInfo([@'SharepointListA'],DataSourceInfo.DisplayName,"Vendor3")
When I try and change this to "...Vendor", it tells me that Vendor does not exist.
From what I can tell this seems to be a cache issue. I've found a couple sources saying I need to refresh my cache or collection, then update all the "Vendor3"s in the app to "Vendor"s since Vendor3 no longer exists.
However, I don't see that option in settings and formulas using ClearData & ClearCollect have been unsuccessful.