I’m trying to make a script that will read from a Date field and copy and paste that data into a Link to field in the same table.
If there is a better way of doing this I am completely open to it. The end goal is to setup an Automation that will check for a change in date from the source and reflect that in a weekly report table.
Solved
Copy and Paste from Date to Link fields
Best answer by JonathanBowen
Hi @Max_Brungardt - for this to work, your date source field must be the primary field in the table (as this is what linked fields link to), so your set up would need to be something like this:
If it is like this, then this simplified script will do the job:
let dateT = base.getTable('Dates');
let dateQ = await dateT.selectRecordsAsync();
for (let rec of dateQ.records) {
let dateFieldID = rec.id
await dateT.updateRecordAsync(rec, {
'Date Link': [{id: dateFieldID}]
})
}
The trick is that the linked field accepts an array of objects and each object is of the form:
{id: SOME_RECORD_ID}
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.