Currently, I am building the company expense claim app where I have 2 screens. Screen 1 is for just the basic information and screen 2 is the detailed information. On screen 2 there a save button where i want the user to click on the button first then it will store in collection table so that they can view or edit before clicking submit to submit those requests to the SharePoint list. The code for the onselect property of the button is like this:
Collect(Information, {CategoryGroup: DataCardValue69.Selected.Value,
CategoryName: DataCardValue70.Selected.Value,
InvoiceDate: DataCardValue74.SelectedDate,
InvoiceName: DataCardValue57.Text,
TypeOfClaim: DataCardValue78.Selected.Value,
Amount: DataCardValue45.Text,
Description: DataCardValue50.Text,
GLLocalAccount: DataCardValue53.Text,
'BU/GLAccount': DataCardValue46.Text,
TotalKM: DataCardValue64.Text,
Vehicle: DataCardValue79.Selected.Value,
RateOfKM: DataCardValue59.Text,
AllowanceType: DataCardValue68.Selected.Value,
Country: DataCardValue49.Text,
GoogleMapURL: DataCardValue54.Text,
StandbyFrom: DataCardValue75.SelectedDate,
StandbyTo: DataCardValue76.SelectedDate,
StandbyInHours: DataCardValue61.Text,
From: DataCardValue72.SelectedDate,
To: DataCardValue77.SelectedDate,
RateOfAllowance: DataCardValue58.Text,
TotalStandbyAllowance: DataCardValue65.Text,
InternalPersonInvolved: DataCardValue73.Selected.DisplayName,
ExternalPersonInvolved: DataCardValue71.Selected.DisplayName,
CreatedBy: User().Email})

and for the gallery on the left i want it to show the user request queue when they clicked save button above. But somehow it not showing the data on the right when i tested submit it just said no item to display. How can i make sure that when the user click on their request on the left when they saved it will also appear the collection table? How can i make the gallery to show that information? And how can i also make it editable for user before they submit the form to the SharePoint as well? I’ve been struggling on this.