Upcoming database upgrades. Airtable functionality will be reduced for ~15 minutes at 06:00 UTC on Feb. 4 / 10:00 pm PT on Feb. 3. Learn more here
May 03, 2019 05:35 AM
I want a formula to look at a string of 10 digits and only write the last 4. How would I do that?
May 03, 2019 06:00 AM
Hi @Carl-Henrik_Sjostrom - try this:
RIGHT(Name, 4)
if the 10 digits is a string or:
RIGHT(Number & '', 4)
If the 10 digits is a number/integer
JB