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 everyone, I'm wondering if anyone has a solution on how to pull in emails from Gmail so that I know what emails have been exchanged between me and a client?I currently have a Zapier set up to push emails to a table in Airtable, based on a label "t...
Hi Kosta, For creating a linked record, the object would look like this: let newStuff = await table.createRecordsAsync({
'Notes': "Ready to make a deal? You have 24 hours bond" + name,
'Start Date/Time': next,
'Contact': {id: name}
}); Assuming...
are both of the column types you're trying to updated, links to multiple records?if so, the object to update it with should be an array of ids, for ex: await table.updateRecordAsync(record, {
"[For Stacker] A Email": [{id: StackerEmail}],
"A ...
hi there! I would create a new table called "Synonyms" in which the primary key is the synonym, and add a column of "Link to another record" type that links it back to the original plant that it came from.This table will allow you to see all synonyms...
Hi there! it sounds like you may need a lookup field: https://support.airtable.com/docs/lookup-field-overviewBecause it sounds like each form is creating something different, a customer vs a ticket, my instinct is to keep the forms separate. You shou...