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