Hello,
I'm quite new to PowerApps.
I have a simple form, with one connection to an xls stored in onedrive. This is a sort of checklist of stuff to do that should keep track of usernames (email) who update each task and the date in which they do. It'll eventually feature a counter or something like it.
The xls has the following fields
Area | Process | Username | Date
I've been using the following in a button to create new records in this xls:
Patch(Table1;Defaults(Table1);{Area:"Area1"; Process: "Process1"; Username: User().Email;Date: Now()})
When I run the app from the PowerApps Preview (locally) it works fine. When I publish it or try it online it does not.
E: When ran online/published it only writes to the first Field, the value "Area1". Everything else is ignored.
I have a feeling it has to do with locales but at this point I can't be certain.
I tried replacing the ; for , and it tells me it got the wrong token, so right now I'm in a bit of a bind.
Does anyone have any experience with this?
Thank you.
(Sorry for my english as it is not my native language).