
Hi -
I have a SharePoint Integration Form that I would like the user to be able to select an item from the gallery and display in form to edit on the same screen. The datasource for both the form and gallery are CompoundingRecordMF and currently only and ID and Title in the Sharepoint Record.
The item property of my form is
If(
SharePointForm1.Mode = FormMode.Edit,
If(
!IsBlank(SubmittedRecord),
SubmittedRecord,
SharePointIntegration.Selected
)
)
Not sure where to put Set(varRecord, ThisItem) or SharePointIntegration.Selected or Lookup?
Thank you
Hi @Bunly11 ,
On the screen you can directly use SharePointIntegration.Selected you would holde the values.
In the default of control you can mention SharePointIntegration.Selected.ValueYouRequired
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.