Hi,
I have created an Inventory app. I have an EditForm Edit screen to edit entries from My SharePoint list. In my app, the SharePoint list is viewed with a vertical gallery, when selecting an entry, it goes into the details screen, you can then tap the Edit icon to go into the Edit screen and edit those details. You can also add new entries. I have 2 issues. The form is functional, but:
- When editing an entry > Navigate(EditingScreen1) - The Datacard value of the current selection blanks out, this only occurs with Datacards with Comboboxes:
- The ComboBox Item property is set to the dropdown choices. This is the formula:
- ["Text1", "Text2", "Text3", etc.].
- For this case, I'd like the Datacard to retrieve their information from the SharePoint List when entering the EditScreen. The SharePoint List columns are Single Line of Text type columns. How do you best set the Combobox property to retrieve the Single Line of Text data and be able to show all values in the drop-down selection?
- I have the same issue for the Datacard with a Barcode Reader, but in this case, when going to the EditScreen, the Datacard resets with the last value the Barcode Reader reads. I want the Datacard to retrieve data from the SharePoint list while having the ability to Scan and enter a new value. The formula I have for the Datacard with Barcode Reader button:
- Barcode Reader -
- OnScan property: Set(VarBarcode,FirstN(Self.Barcodes))
- DatacardValue -
- Default property: First(BarcodeReader1.Barcodes).Value
- The SharePoint list column type is Single Line of Text.
Any way to make this functional? Let me know if I'm not clear with my explanation above.


