How do you convert numbers as "text" to values for a long column .

G

geoexcel

I need to convert numbers as text to values that can be added for a long
column of entries. HELP
 
M

Max

One quick way ..

Select the entire col, say col A
Click Data > Text to columns
Click Finish
 
E

Earl Kiosterud

=SUM(A2:A65536+0)
If there are any non-number text cells in the range, they'll confound this
formula.
 
Top