# Timestamp for File Uploads

**URL:** https://community.glideapps.com/t/timestamp-for-file-uploads/77483
**Category:** Ask for Help
**Created:** [October 30, 2024, 4:14pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483 "2024-10-30T16:14:39Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![Rutger](https://avatars.discourse-cdn.com/v4/letter/r/8edcca/32.png) [@Rutger](https://community.glideapps.com/u/Rutger)
#### Post date: [October 30, 2024, 4:14pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/1 "2024-10-30T16:14:39Z")

</div>

Is it possible to create a timestamp after a file is uploaded? This way, we can see who uploaded the latest version and when.

 ![image](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/a/c/acf337f5ceb849c66148c3b7221fff1afe7031ca.png)

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [October 30, 2024, 4:18pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/2 "2024-10-30T16:18:22Z")

</div>

In the same row you upload your files, you could have a computed value getting the user profile email. Or you could use the user profile directly from the layout editor.

---

<div class="post-metadata">

### Author: ![Rutger](https://avatars.discourse-cdn.com/v4/letter/r/8edcca/32.png) [@Rutger](https://community.glideapps.com/u/Rutger)
#### Post date: [October 30, 2024, 4:31pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/3 "2024-10-30T16:31:34Z")

</div>

Thank you for your response!  
Yes, then I indeed have the user who uploaded the file. I’m mainly looking for the date and timestamp. Do you know if that’s possible?

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [October 30, 2024, 4:36pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/4 "2024-10-30T16:36:02Z")

</div>

Ok so the image is showing fake data? Right? So you actually already have the username but now you want the timestamp. Correct?

---

<div class="post-metadata">

### Author: ![Rutger](https://avatars.discourse-cdn.com/v4/letter/r/8edcca/32.png) [@Rutger](https://community.glideapps.com/u/Rutger)
#### Post date: [October 30, 2024, 4:37pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/5 "2024-10-30T16:37:27Z")

</div>

Correct! I’ve added the text as an example (how I’d like it to be). I can find the user, but I’m mainly interested in the date and timestamp as soon as one or more files are uploaded.

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [October 30, 2024, 4:44pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/6 "2024-10-30T16:44:13Z")

</div>

You could put the file upload field inside a form and set an action onSubmit to set a new timestamp on the row.

---

<div class="post-metadata">

### Author: ![Jeff\_Hager](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/jeff_hager/32/43_2.png) [@Jeff\_Hager](https://community.glideapps.com/u/Jeff_Hager)
#### Post date: [October 30, 2024, 6:36pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/7 "2024-10-30T18:36:22Z")

</div>

> [@MaximeBaker](#):
>
> and set an action onSubmit

I’m always hesitant to use Set Column on submit because you are trying to edit a newly added row, and that sometimes doesn’t work. It’s not always reliable due to timing and you might be trying to edit a row that hasn’t been fully added yet.

There are Special Value components available for these types of situations within a form that will add the values when the row is added as opposed to updating the row after it’s added. I think people often overlook these special value, value, and user profile components.

---

<div class="post-metadata">

### Author: ![MaximeBaker](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/maximebaker/32/80877_2.png) [@MaximeBaker](https://community.glideapps.com/u/MaximeBaker)
#### Post date: [October 30, 2024, 6:55pm UTC](https://community.glideapps.com/t/timestamp-for-file-uploads/77483/8 "2024-10-30T18:55:29Z")

</div>

You are right ! Almost forgot about these special values that I used yesterday !! LOL 😂
