Re: PowerApps Canvas App and SharePoint List - Offline Mode
Thanks for the Reply Aaron.
Is there a way to get the collection data to save when the app is closed?
I have the below working to save the form in to a collection.
But when i close and reopen the app the data is missing?
Collect(
TicketCollection,
{
Requestor:RequestorValue,
ContactNumber:ContactNumberValue,
EmailAddress:EmailValue,
Subject:SubjectValue,
Description:DescriptionValue,
Status:StatusValue,
RequiredDate:RequiredDateValue,
Urgency:UrgencyValue,
Category:SelectedCategory,
SubCatApplication:ApplicationValue,
SubCatHardware:HardwareValue,
SubCatNetwork:NetworkValue,
SubCatUser:UserRelatedValue
}
);
Cheers