Hi I have been building a canvas app to control some data in SharePoint lists. I have a selection screen using a ComboBox linked to a SharePoint list. It is single selection and has Double fields selected ["UniqueID"]'["ActivityDescription"] when clicking the drop down they display.
Throughout the rest of the app I have various code that uses the ComboBox2.Selected.("various fields") Example ComboBox2.Selected.RevisionCode which display in text boxes, used to Patch other lists or Set variables. All was working fine until yesterday and now something has happened.
The only change I made to the list was I added the inbuilt SharePoint Version column to the allitems view which I have now removed again but still not working.
I manually updated some variables to see if I could get the patch function to work and the only 2 fields that patched across are the 2 fields selected in the Double ["UniqueID"]'["ActivityDescription"].
I have removed and re added the list through the data section and no change.
I have created a new page within the app and added a new ComboBox and Text label connected to the same list and I am still getting the issue where it will only display the fields that are included in the ComboBox. This is the text property for the Label.
"Activity Description: " & ComboBox3.Selected.ActivityDescription & "RevCode: " & ComboBox3.Selected.RevisionCode & "COWR: " & ComboBox3.Selected.COWR
In this example it does not display RevisionCode or COWR text.

Any suggestions would be greatly appreciated