The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
Hi,
while this Airtable Scripting is a good start.
Is there any way to get the last logged in date or update the sharing permissions the collaborator might have on the base?
Thanks,
Nigel
Hi all,
I have a base that links to a small table of 15 records that provide keys and desciptions. We link from another table and now for certain keys it is refusing to save those records.
Process goes choose the link field, saving icon comes on in t...
Here is a script that will count records per table and output the result as a little CSV output.
It is a little quick and dirty and will take ‘some time’ to run if you have large record counts.
Hope it is useful to someone.
let tableCount = base.tabl...
It does @Erin_OHern thanks for the reply.
Can you please add these to the backlog, queue, suggestion box or other way of collecting ideas if it is not captured already.
It would make it easier for me to update permissions this way for many users over...
There seems to be an api for this now.
Airtable
Airtable | Everyone's app platform
Airtable is a low-code platform for building collaborative apps. Customize your workflow, collaborate, and achieve ambitious outcomes...
This should do the trick:
This splits a phrase at spaces, returns another array of the capitalised first letters and then joins them back together with no separator.
"Today I Learned".split(" ").map(word => word[0].toUpperCase()).join('');
Nigel_James:
let result = await table.selectRecordsAsync();
Most of the time is taken up with this line.
There isn’t a way to get a count without selecting the records and any table with thousands of records will take a little time to select t...