Hello!I have an automation set up that when a record enters a view, a script is run to delete the record. Almost every time it runs it throws some failure notices and I get multiple notifications from Airtable. But, it seems to work though. All recor...
Hello!I have a formula that calculates commission and I need to add an additional calculation that is tripping me up. I am starting with the following formula.SUM(IF({Commission Based On},{Commission Based On},{Purchase Price (Current/Final)})*{Commi...
Hello!
When I add a text element to an interface, and format it as a checklist, I am unable to check/uncheck the boxes when the interface is published. I am only able to do so in edit mode. Is there something I am missing?
Thanks!
Hello!
I have an issue with a SUBSTITUTE formula I am using. I started with the following formula:
SUBSTITUTE(
SUBSTITUTE(
{Email Body} & "",
"{Appraisal Contingency Date}",{Appraisal Contingency Date} & ""),
"{Conditional A...
Hello! I am new to Airtable and have been chugging along until now lol. I have done hours of research and received advice from a few people but I am still very much stuck.
I have a multi select field and I am trying to write a formula that takes the ...
See below for screenshots of what the final automation looks like. But keep reading to see another solution! Another way this could be done is with the automation below. Someone mentioned to me that the previous way I was running it would count as ...
That was it! I had the script below in another automation that adds a delay and I added it to this automation and it worked. Thank you so much!! function delay(ms) {
var limit = new Date();
limit = limit.setMilliseconds(limit.getMilliseconds() + ms);...