
First time poster here. I have made a simple PowerApp that populates rows in an Excel spreadsheet stored in OneDrive. I'm making this app for our plant operators-the idea is that they type in their initials into the text box after a task is completed or they insert a comment stating why it couldn't be completed. Is it possible to view timestamps and the users that entered them for the new data? Appreciate the help in advance.
Yes that is possible insert two textboxes, one for user and the other timestamp. In the Default of the Textbox;
For user who entered;
User().FullName
Or
User().Email
For the timestamp;
Now()
If you are using a form for your enteries, add two columns to your excel. Then in the Default of the Textbox put the above formulas.
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.