RIGHT-Return 10th characters to right

  • Thread starter Thread starter jh
  • Start date Start date
J

jh

I have an Excel spreadsheet with 25 or more digits in
column A. I want to put the 10th digits to the last digit
in column B.

Is there a way to do this?

Thanks in advance.
 
Do you mean from the 10th digit to the last digit, in which case:-

=MID(A1,10,LEN(A1))
 
Back
Top