I am struggling with what must be easy for most of PowerApps devs.
I have an Excel Table "Table1" used as a Datasource in my PowerApps application and I want to update each row of the collection with a formula : ColumnX = ColumnY.
No gallery, no collection here. I haven't created my own ID as I didn't need it.
I tried with ForAll and Patch functions without any success in finding the correct syntax...
ForAll(ShowColumns(Table1,"Avancement antérieur (%)","Avancement total (%)"),
Patch(Table1, ThisRecord, {'Avancement antérieur (%)':'Avancement total (%)'}))
Thanks for your help!