This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
I've been trying to update a multipleCollaborator field without overwriting. Specifically I have a lookup field with user IDs and I'm trying to copy the same IDs (hence collaborators) to another (empty) collaborator field.This should be relatively si...
for (let d in daylist) {
await currentTable.createRecordAsync({"Actual Date": daylist[d],
"Assignee": [{id: assigneeID}]})
};
Is there any reason why the above snippet works in Scripting Blocks and not in the Automat...
I think this has been solved, right? Now, provided the user has access to that record, the comment goes to the interface the user uses the most (unless they have access to the interface where the comment was originated from)
My bad, I guess Google does allow unauthenticated access. Still – I think you all are mistaking an enterprise database software for little business applications. AT is for big companies. You can still use AT as your backend, for unauthenticated (simi...
restricting an interface to authenticated users seems only normal to me – would be a huge security issue otherwise. if you share a google doc, don't you have to log in to Google first?
Took me a while but if you're looking to label This Week, Next Week, etc from weeks starting Sunday I came up with this. Someone please consolidate in one field.Weekday -1(WEEKDAY({Delivery Date})*-1)Delivery Week (Step 1)DATEADD({Delivery Date},{wee...
Thanks @Stephen_Orr1. getRecord() was a good suggestion, but the script was still throwing errors. The solution was much simpler, so for anyone looking to update Multiple Collaborator fields, this seems to be working just fine.// This script copies a...