Skip to main content

I want a formula to look at a string of 10 digits and only write the last 4. How would I do that?

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


Reply