Hi,
I created a form and set the Default to FormMode.New
This allows the user to add new data when they land on my screen - works perfect
FormMode.New
My button "+Add Item" creates a collection which gets shown in the gallery below with the idea that it lets user review the item before commiting it to sharepoint list - works fine
Now in the gallery I added the icon to change FormMode.Edit
I have that gallery icon Onselect: Set(VarMode, "Edit"); Select(Parent)
And in my form the default I have an IF statement to check the variable if true then FormMode.Edit else FormMode.New
when this is click my form just goes blank " Nothing to display"

FormMode.Edit
I am stumped - I think it has something to do with the form not being able to point to the record in the gallery but I don't know how to do that.
Could someone explain how I can achieve the edit function to display the selected item in the form from the gallery ready for change?