The Community will be undergoing maintenance from Friday February 21 - Friday, February 28 and will be "read only" during this time. To learn more, check out our Announcements blog post.
Hey everyone,I have a question regarding second-level filtering. In a classic CRM setup, I have a table that holds all my opportunities. I have another table that holds all my activities (say to do items that can be linked to opportunities in airtabl...
Hey everyone,I am slowly moving forward in my airtable scripting journey. What a ride so far. I would need some advice on best proceeding to finalize my script.Context:I created a script triggered from a button, to match client records with potential...
On one of my interfaces, I added a calendar element when opening record details. It works great on desktop, but the calendar element is cut and unusable on mobile. Has anybody else had a similar issue?I tried to move the element at the bottom and mid...
Hi All,I am having an issue with my script:When using an integer value in the condition, the script works.Example: return all records that have a value higher than 9 in the field name "Bedroom": const propertyTable = base.getTable("Listing");
// Rea...
Hi Everyone,I have an idea that I am really struggling with and would appreciate some help. GoalCreate a script/Automation that loops through table 1 to find matching record based on multiple conditions and link those records with table 2.Base struct...
Hi @BenjaminM Welcome to Airtable.Yes I was able to achieve something very close to what I had in mind. I would advise looking for a GPTs airtable script assistant (if you are low code). I literally built my script with it entirely.Here is a script l...
@Arthur_Tutt I honestly have to thank chatGPT for my script.For all the Nocode people out there, it's possible to come up with something fairly advanced as long as you have a basic understanding of the scripting logic requirements with airtable. It o...
@Arthur_Tutt Thank you for the feedback!Yes currently, I am running the script from the automation feature, which is triggered by a button. So essentially, if I summarize what you are both saying, either I use fields to save weight values, or I have ...
50 youtube videos later, I did some modification and could kinda make it work. // Script setup
let opportunitiesTable = base.getTable("Opportunities");
// Ask the user for Input
let opportunity = await input.recordAsync("Select opportunity", oppor...