How to convert 4% into number?

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

Guest

I load the web page from web into excel spreadsheet,
In cell A1, there is a text 4%, but when I use "isnumber" function to check
cell A1, it returns false. Does anyone have any suggestions on how to convert
"4%" into number?
Thank anyone for any suggestions
Eric
 
Do a Data>Text To Columns on that column, no delimiting or anything, just
run it through. It will convert it.

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
In a helper column, put this and copy down.......

Vaya con Dios,
Chuck, CABGx3



=LEFT(A1,LEN(A1)-1)*1
 
In a helper column, put this and copy down..........

=LEFT(A1,LEN(A1)-1)*1

Vaya con Dios,
Chuck, CABGx3
 
Back
Top