Need Help "0N125415"

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

Guest

I have a column of 8 charecters just like the above one "0N125415". What should I do to convert the second Charecter into "0"

Thanks a lot.
 
Max,

In another column use a formula like

=LEFT(A1,1)&"0"&MID(A1,3,LEN(A1))



Max said:
I have a column of 8 charecters just like the above one
"0N125415". What should I do to convert the second Charecter into
"0"?
 
How can I treat the outcome as numbers? I tried multiple ideas, didnt work

----- Chip Pearson wrote: ----

Max

In another column use a formula lik

=LEFT(A1,1)&"0"&MID(A1,3,LEN(A1)



Max said:
I have a column of 8 charecters just like the above on
"0N125415". What should I do to convert the second Charecter int
"0"
 
One way:

=--(LEFT(A1,1)&"0"&MID(A1,3,LEN(A1)))

the right minus makes it a negative number, the left minus changes it back to a
positive number.
 

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