From B0101 to 101

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello from Steved

How do I please write a formula that will delete the first digits as for
example delete the B0 from B0101 to leave 101

Thankyou.
 
If you always want to delete the first two digits, try...

=RIGHT(A2,LEN(A2)-2)

or

=MID(A2,3,1024)

Hope this helps!
 
Will it always be just the first 2 digits you're removing? If so, then try
this:

=MID(A1,3,LEN(A1)-2)

HTH,
Elkar
 
Thanks Domenic.

Domenic said:
If you always want to delete the first two digits, try...

=RIGHT(A2,LEN(A2)-2)

or

=MID(A2,3,1024)

Hope this helps!
 
Thankyou Elkar

Elkar said:
Will it always be just the first 2 digits you're removing? If so, then try
this:

=MID(A1,3,LEN(A1)-2)

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top