Help

Recording a timestamp when a specific status is met

422 1
cancel
Showing results for 
Search instead for 
Did you mean: 
SadieYanckello
4 - Data Explorer
4 - Data Explorer

Is there a way to set up an automation so that the current date is recorded when a specific status is met. For example, When a project's "status" is changed from incomplete to complete, a date column would automatically fill with that day's date?

1 Reply 1
Christian_Sabou
5 - Automation Enthusiast
5 - Automation Enthusiast

You could run a script

const now = new Date();
let inputConfig=input.config();
let CellId=inputConfig.StatusChanged;
let table = base.getTable("All Projects");
await table.updateRecordAsync(CellId, {
    "Completion Date": now
})