You need to create a field for that table that at a scheduled time changes the value to “run automation” or something to that effect and adjust your Automation to use the “When record matches conditions” trigger.
You need to create a field for that table that at a scheduled time changes the value to “run automation” or something to that effect and adjust your Automation to use the “When record matches conditions” trigger.
Thank you, Kamille - I will give that a try and respond back here on the result.
You need to create a field for that table that at a scheduled time changes the value to “run automation” or something to that effect and adjust your Automation to use the “When record matches conditions” trigger.
Hi @Kamille_Parks, I’m set up now to send the email when a record enters a view with the new field “Send email” set to “Yes”. But I still have to have another automation to set the “Send email” field. I want to set the field to “Yes” for all records in a specific view on the last day of the month. I’m not sure how to deal with the results of a Find action. I set up a trigger for a particular interval (last day of the month) and then did a Find action to find all records in a specific view. Then I have another action - ‘Update record’ to set the “Send email” field to “Yes”. But, I’m getting an error on the Update. I think it’s because I’m using the list of Airtable Ids from the Find action, and I guess that’s not right. Can you advise me on how to identify all records in a view and set a field in all of them to a particular value?
Thank you!
Hi @Kamille_Parks, I’m set up now to send the email when a record enters a view with the new field “Send email” set to “Yes”. But I still have to have another automation to set the “Send email” field. I want to set the field to “Yes” for all records in a specific view on the last day of the month. I’m not sure how to deal with the results of a Find action. I set up a trigger for a particular interval (last day of the month) and then did a Find action to find all records in a specific view. Then I have another action - ‘Update record’ to set the “Send email” field to “Yes”. But, I’m getting an error on the Update. I think it’s because I’m using the list of Airtable Ids from the Find action, and I guess that’s not right. Can you advise me on how to identify all records in a view and set a field in all of them to a particular value?
Thank you!
Eliminate this automation by using a formula for your {Send Email}
field:
IF(
IS_SAME(
TODAY(),
DATEADD(DATEADD(DATETIME_FORMAT(TODAY(), "YYYY-MM-01"), 1, "month"), -1, "day"),
"day"
),
"Yes",
"No"
)
If the trigger is “When record enters a view” then as records enter the view, the Automation will fire once per record. The Find Records step is obsolete in this workflow and should just be removed.
Eliminate this automation by using a formula for your {Send Email}
field:
IF(
IS_SAME(
TODAY(),
DATEADD(DATEADD(DATETIME_FORMAT(TODAY(), "YYYY-MM-01"), 1, "month"), -1, "day"),
"day"
),
"Yes",
"No"
)
If the trigger is “When record enters a view” then as records enter the view, the Automation will fire once per record. The Find Records step is obsolete in this workflow and should just be removed.
Thanks so much (again). I will do this now.
Thanks so much (again). I will do this now.
Works great, thank you so much!