I'm using public web forms to edit Airtable information. Is there a way to record in an Airtable field the date and time that the submit button was pressed on the web form? If not, is there a way to record in an Airtable field whether or not someone submitted an edited the Airtable record using a web form?
Dear @theiman,
The easiest way to handle it would be to add a new date column to Airtable, you can place it as a date field on the form.
It can be hidden with Style property:
display:none;
Then, you can set current date before submit:
fd.beforeSave(() =>{
fd.field('SubmitDate').value = new Date();
});
This will automatically populate field with the date of submission.
Will this work for you? Let me know if you'll need help with the setup!