I've created a service form app where someone inputs the data directly on the app and that then saves out to Excel. I have an option to save the inputs into a collection that would save offline by selecting a button 'Save Data':
ClearCollect(Offline, {ServiceRep:ComboBox2.Selected.Value, Date:DateValue1.SelectedDate, Name:DataCardValue1.Text, Email:DataCardValue11.Text, ...}); SaveData(Offline, "Offline")
Then I have another button to 'Load Saved Data': LoadData(Offline, "Offline", true)
But I want the saved collection to be put back into the form so the person can continue to edit and then submit. Right now, the load data doesn't do anything (at least from what I can see).
Is it possible to repopulate the form with the inputs from the collection?

Thanks!