Skip to main content
Solved

Validation workarounds in automations

  • September 24, 2026
  • 4 replies
  • 17 views

Forum|alt.badge.img+1

Hey everyone,

 

I’m at a bit of a stand still with moving forward on an email request.

 

Essentially, projects are being reported as incomplete when a link isn’t generated in the records interface. However, some projects don’t require URLs. We don’t want to encourage people to put “N/A” in the field (for fear they’ll default to that versus best practice), but it’s been difficult to figure out a workaround for generating the automation email while not have validation opportunities to say “in the case that this request is a certain type of request it doesn’t need the url”.

 

It’s possible my brain has just become fried but I’m not super sure how to accomplish this - any help would be appreciated!

 

Thank you!

Best answer by TheTimeSavingCo

Hm, assuming you have a select field that indicates what kind of project it is, you could create a formula field that helps you validate this and then use that field in your automation?

IF(
OR(
AND(
{Project Type} = 'Needs URL',
URL != ''
),
{Project Type} = 'Does not need URL'
),
'Valid',
'Error'
)

 

4 replies

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • September 24, 2026

How is your automation being triggered?

- ScottWorld, Expert Airtable Consultant


TheTimeSavingCo
Forum|alt.badge.img+32

Hm, assuming you have a select field that indicates what kind of project it is, you could create a formula field that helps you validate this and then use that field in your automation?

IF(
OR(
AND(
{Project Type} = 'Needs URL',
URL != ''
),
{Project Type} = 'Does not need URL'
),
'Valid',
'Error'
)

 


DisraeliGears01
Forum|alt.badge.img+22

Could this be solved by writing or tweaking a formula field to indicate whether the record is complete with the URL or without?

Y’know, something like if the type is social post and url is empty= incomplete, if type is print material and submitted=true, mark complete. I can’t really give you a full formula without more info about the projects and fields


Forum|alt.badge.img+1
  • Author
  • New Participant
  • September 24, 2026

Thanks all! Sounds like formula will be the way to go - thank you!