Ask your questions about Airtable Automations here.
Recently active
Hi All, Can anyone offer any guidance on how to version control scripts used in Automations? Currently, we create a duplicate base, run some automated tests on that base. If the tests pass, we copy the updated scripts over to the production base. It’s not ideal, so curious if anyone else has found a better solution. All the best, Tommy.
I am passing a duration type field a number value for update: let [audioFile, duration] = await concatenateFiles(audioUrls); console.log(duration); // this is showing a number with decimal // make the update await table.updateRecordAsync(record, { AudioURL: audioFile, Duration: duration, Status: {name: "Done"} }); All 3 fields are updated but the duration is always zero after this update. Do I need to supply something other than a number to the duration data type? Edit: I tried to use Math.round(duration) to no effect
Hi everyone! I’m trying to use my Airtable as a social media scheduler, and I’ve got a date/time column for when I want the post to send to Twitter. Does anyone know of a way to trigger automations based on the time of a column, as opposed to just the date? Right now if I use the trigger ‘when Date equals today’, all the automations fire at 12:00am instead of the corresponding time I put in the column. Anyone know a way around this, so that if I set a date/time of Oct 31 at 8:00pm, the automation doesn’t actually fire until 8:00pm as opposed to right when it becomes Oct 31 (ie. 12:00am)? Thanks! Connor
Hello, as a non-profit we regularly send a newsletter to our members. For this I use the Sendgrid app (we also have a Sendgrid subscription). Is it possible to automate this action so that the mail is sent at night, for example? Yours sincerely Geert
I have Facebook posts automations set up to post on the publish date but I’ve also added a time. Ascript runs around midnight every night and posts them all for the day rather than it posting at the times I have set. How can I correct this?
I’ve successfully created some automations to create an approval process when a status field says For Approval (trigger). The email goes to the 2 collaborators I listed in the action by email address separated by comma. Great. I’d like another action that notifies by email the “author” when the trigger is status Approved. That author could be 1 of 15 people and I don’t want to send all notifications to all people. Can I create an email action with logic that emails the “author” when that author is a verified collaborator with an email address associated with their account? Automatically pulling that author’s email info like a token? So far I can only see the option to set/pick the email addresses. Any help appreciated.
I have a “Created Time” field which I am trying to use to trigger automations. When I test the trigger, it says it was successful but is only finding 1 record when there should be many. I’ve tried setting different conditions, but no matter how I set them, the automation is not capturing the correct records. Am I missing something?
Hi, Is there a way I can insert a clickable phone number into the “send an email” automation? If I just insert my phone number field into the email, it shows the phone number but it’s not clickable (no Tel: hyperlink) Thanks!
Hello! I’m trying to automate a process for my client and I think Scripts may be the answer. Use Case: We’ve built a purchase order system. Purchase orders populate on the purchase order table and the accounting dept decides when to pay them. When purchases for a vendor or vendors are to be paid, a batch is created for each vendor on a second table. So imagine if you will, a February Mastercard bill with 100+ purchase orders. In an ideal world, it would be great if we could select a checkbox (next to each Purchase order) and it FINDS or CREATES a new batch on the second table. If the batch has already been created, the act of checking the checkbox links the purchase order to the batch. If the batch does not exist, it creates the batch and links the first purchase order. Side note: Batches have two statuses (Pending and Complete), So if it doesn’t see a pending batch for the vendor it would create it. Is this possible? We are also using Zapier. Thanks Jake
Hi All, I’ve configured an automation that insert info from form to a google sheet. This form has a file field. When updating de google sheet, images files can be opened without problems, but other filetype as pdf, doesnot work. Airtable show “File not found message”. Any idea? Thanks.
I’d like to optimize my automation by running the same automation whether any field is updated, but perform a change related to the updated field only. How can I know what field was updated from a script?
Im trying to remove notifications on individual activity feeds, does anyone know how? I know you can change it in settings in general, but I want to just take off certain notifications on some companies and not on others. Any ideas?
i am trying to figure out how to make the cell automatically figure out if I have made a gain or loss in money in a particular cell. Is there any way to make this happen?
Has anybody created a google chat message automation without having to use a third party tool like automate.io so send messages to people in your google chat when a new record is added or updated?
I am wondering if there is a way to create a filtered list from a table to create an ad hoc shopping list. For example, I have an inventory item list table with reorder points and reorder quantities. I would like to be able to take my tablet to the inventory shelves and when I see an item that is low stock, I would like a button attached to a script that would send the selected item to an isolated table therefore creating an order list for items needed. I thought about using a checkbox column that I could then filter for a list but there is no easy way to reset checkmarks for next count. Am I making any sense?
I’m making an automation right now and would like to nest a link (kept in 1 field) into the text of another field. Essentially I have the two fields I would need to do this in Slack here: But I would like to do this on the AT side so it comes out cleanly like it would if I did it in Slack. Slack formatting doesn’t offer a way to nest links with a text shortcut. Has anybody done this?
I would like to send out an email once someone has filled out a form but when I set up the email trigger, I keep getting an error. I have an upgraded plan so I should be able to set this up. Can someone please help?
I have one automation (A) that must fire before another (B) after I import records with the CSV Import app. Automation A addresses a unique field value in 1 record, and Automation B will run for all records imported, including the record updated by A. Is there I way I can force A to run before B? Thank you!
I have there tables that connect: Contact Log Students Contacts What I want is an automation (or a script, but I am just learning Javascript so I am not there yet) that when I link a student into the contact log table it automatically looks up that student in the contacts table and links those contacts into the contact log table.
I am wondering if anyone has a way to pause all automations for all bases with one button? and then can turn them all back on with one button?
I have created many successful automations, however most recently, when I try to duplicate an automation, I am getting errors when I run a test. The only thing I’m changing is the person who is receiving the notification, nothing else; nonetheless I’m getting an error saying “Message” refers to a trigger or action that does not exist. Help!
I’ve got some form data coming into a table, and I’m then using those fields from newly created records to search for corresponding records in another table. I was mystified why the automation was sometimes bombing, but I’ve determined that stray trailing blank spaces are passed by the form, and will cause a string match to fail. I realize I could add a formula field to then ‘TRIM’ all of these strings coming in from the form, but gosh that’s kinda sucky to create duplicate formula fields for everything. Is there a better approach that I’m not aware of?
I have 3 tables: 1 - Incomes, 2 - Outcomes and 3 - Monthly reports. I’m trying to link new records in tables 1-2 to the appropriate record in table 3. in tables 1-2 I have a formula field which gives year and month (e.g. “2021 01”). The 1st column in table 3 is “YYYY MM”. I created automation that trigger in new record in table 1, finds the matching record in table 3, and updates it with the newly created record. And it worked as planned! When I tried to do the same thing on the 2nd table I encountered the problem in the picture - I can not insert the record to search by. It only allows me to enter the metadata of the record (only length is available). Any ideas what the issue might be? Do you know what are the criterias for inserting record’s field in the automation? Any thoughts will be highly appreciated!
I would like to sort the list of automations in order to harmonize it with our work flow. Is that possible? Thank you Klaus
I Think this may not be possible, but I thought you all may be able to help. We do food with a menu that has different portion sizes based on age group. (Daycares). The daycares, (state funding regulations) need calendars from us that reflect the serving sizes of each menu item. We have a couple tabs that house the basic information for the items and have two separate columns-1-2 year old portion size and 3-5 year old portion sizes. We use linked records and lookup fields to create a 1-2 year old menu tab and a 3-5 year old menu tab (separate tabs), so the calendar view can be a FORMULA which includes the pertinant information for the age group (See YoFreshFood.com/alta) Where we are running into struggles is if we change something on the 1-2 year old tab , we also have to make the change to the 3-5-year-old tab. We just copy/paste or whatever, but I think this could be shortcut. WE MUST KEEP TABS SEPARATE for order/delivery/invoice purposes. I’ve got an automation set up that when we
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.