How to change text into number?

G

Guest

Does anyone have any suggestions on how to change text into number?
For example, in cell A1, the value is "13.555", and I would like to display
13.555 in cell B1 as a number.
Does anyone have any suggestions?
Thanks in advance for any suggestions
Eric
 
N

Niek Otten

Hi Eric,

In B1:

=A1*1

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

| Does anyone have any suggestions on how to change text into number?
| For example, in cell A1, the value is "13.555", and I would like to display
| 13.555 in cell B1 as a number.
| Does anyone have any suggestions?
| Thanks in advance for any suggestions
| Eric
 
F

Fred Smith

To change text to a number, just use it in a formula with arithmetic. So

=a1+0

should do the trick.
 
R

Rick Rothstein \(MVP - VB\)

Or if the value is inside quotes then:
=MID(A1,2,LEN(A1)-2)*1

Just offering another possibility for consideration...

=--SUBSTITUTE(A1,"""","")

Rick
 

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

Top