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 there,
I adapted the below script by @Justin_Barrett. Everything was working great until I added a few hundred new records to the ‘TaskLog’ table.
The script now throws this error:
Exceeded quota of 15 mutations per second at main on line 20:
let ...
Hi there,
I’m using this script by @Justin_Barrett to batch duplicate some records:
This is what it looks like::
let table = base.getTable("TaskLog");
let query = await table.selectRecordsAsync()
let checked = query.records.filter(record => {return r...
I operate a booking system in Airtable and I have to generate months of recurring dates/times (one per record) in advance.
Click, hold, dragging date sequences is very helpful in this regard (see:
Quickly filling cells using fill handle – Airtable Su...
Hi there,
I’m trying to use the DATEADD function to calculate an end time for an event.
My formula is:
DATEADD({Timeslot StartTime},{Duration mins},‘minutes’)
{Duration mins} can be a lookup field or a formula field. I’ve tried all formatting options...
Can anyone suggest a form builder/no-code solution that integrates with Airtable and supports the following features:
Dynamic, dependent dropdown lists based on Airtable linked records;Dynamic transactions in stripe or some other payment integration ...
That's too bad... the pricing is just sort of "cute" again.It assumes the typical Airtable builder is a marketing agency... and maybe it is!We already spend $400 a month, and would spend more, but won't be able to utilise portals under the current pr...
Thanks for releasing this feature.However, the problem with the current version is that beyond using it for some cute to-do lists (i.e. walk the dog, get a coffee, that kind of thing), it's just not going to be useful for businesses because you can't...
Hi All,Common pain point - Wish they'd just add a delay action, a la Zapier!..That said, what would be the risk of using a script like this, which seems to run just fine...function wait(ms) {return new Promise(resolve => {const startTime = new Date()...
Assuming that you’ve already split and trimmed the full raw name into first and last names, here’s a formula that works for me:
UPPER(LEFT(FirstName,1))&MID(FirstName, 2, LEN(FirstName)-1)
It grabs the first letter of the name, capitalizes it then ad...