Hi Can I know how to capture the date and time when the user submit the form?
SP list column date submit
Thanks
just create a column called as submitted date and in the workflow in that submitted column give utcnow
hope this helps!
Thanks RuseelThomas settled. 🙂
Thanks PVosEska
Hi @bbsin ,
You can grab properties from the forms last submit by using the <formName>.LastSubmit.<FieldYouNeed>
You could patch this into another list if that was what you needed:
Patch(
SecondList,
Defaults(SecondList),
{
'date submit':<your form>.LastSubmit.Created
}
)
where;
- the secondList is the name of the list you want to patch it to,
- Defaults(SecondList) creates a new item in that list,
- 'date submit' is the field you want to insert,
- <your form>.LastSubmit.Created is the Created date of the last submitted form.
Let me know if you need more help!
Regards,
Hi @bbsin ,
One of the things I love about using SharePoint is that it already captures this information for you in the following built-in columns;
There are other super handy columns as well, but this should do for you.
They are hidden on SPO by default, but they will be there - so if you can't see them in your SharePoint list, click on an existing column header and select 'show/hide columns' then select the relevant columns from the list that pops up.
If you absolutely have to create and store your own timestamp, you can add a date/time column and set it to include Time, then in your app add the field to the form and hide it so the user can't see it.
You can then set it's card Update: property field in the corresponding Form to
Now()
Hope this helps,
RT
Thanks for your help
@bbsin ,
The Now() function returns the current Date and time, so you could have a card on your form with this as the Default.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
WarrenBelz
48
Most Valuable Professional
mmbr1606
41
Super User 2025 Season 1
MS.Ragavendar
36