
Hi all,
When adding a new line I see that it has to use the patch function and actually add the new row to the data source and then display it in Power Apps. Is there a way to add a new line (only in Power Apps) and then only Patch to the source after explicitly saving?
Right now I'm using:
Patch(
'URL List',
Defaults('URL List'),
{Title: "New URL"}
);
Set(varReset,false);
Set(varReset,true);
I'm guessing it would need to be loaded into a collection and then patching the collection to the data source? I did try that in one of Reza's guides but it didn't work for me.
Thanks,
David
Hi , @da1vea
According to your description, you want to first save the data in a collection and then patch to the data source.
You can refer to this :
If this reply can help you , you can click mark this reply as solution (Accept solution) which can help more people, thanks in advance!
Best Regards,
Yueyun Zhang