Help

FORMS - Date Submitted Field

Topic Labels: Data
Solved
Jump to Solution
904 3
cancel
Showing results for 
Search instead for 
Did you mean: 
JMilligan
4 - Data Explorer
4 - Data Explorer

Is there a way to autofill a hidden field or Date data on a form to show when that form was submitted? This to to eliminate the need of asking the user to fill in a date field.

1 Solution

Accepted Solutions
ScottWorld
18 - Pluto
18 - Pluto

@JMilligan 

There is a special field type called "Created Time". Just add one of those fields to your table, and you will always see the Created Date (and optional time).

Created Time fields are fields that can't be edited by the user, so if you actually need to have an editable date field for some reason, then you can just create a normal date field and have an automation set the normal date field to the value of the Created Time field.

See Solution in Thread

3 Replies 3
Valentino_Escal
7 - App Architect
7 - App Architect

Hi @JMilligan 

You can have a Last Modified Time field. This could show you when the form was submitted, assuming no other data is modified within that record.

You can alternatively create a field with the formula CREATED_TIME(). So when a form has been entered, you can see what date it was created.

Hope this helps!

ScottWorld
18 - Pluto
18 - Pluto

@JMilligan 

There is a special field type called "Created Time". Just add one of those fields to your table, and you will always see the Created Date (and optional time).

Created Time fields are fields that can't be edited by the user, so if you actually need to have an editable date field for some reason, then you can just create a normal date field and have an automation set the normal date field to the value of the Created Time field.

Thanks @ScottWorld ! That worked perfectly.