How to create a slug field in Airtable
A simple guide for creating a "slug" field in Airtable using formulas
Last updated
Was this helpful?
Was this helpful?
LOWER(REGEX_REPLACE(REGEX_REPLACE(REGEX_REPLACE(TRIM({Name}), "[^a-zA-Z0-9- ]", ""), " ", "-"), "-+", "-") & "-" & RIGHT(RECORD_ID(), 5))replaceAll(prop("Article Title"), "[^a-zA-Z0-9- ]|,| ", "-")