How can I convert numbers in the format such as 0.8805*0.1
to actual number?
In my case above, the result should be 0.08805
. I would like to apply this to a huge number of columns and rows.
How can I convert numbers in the format such as 0.8805*0.1
to actual number?
In my case above, the result should be 0.08805
. I would like to apply this to a huge number of columns and rows.
I'm on windows. so i purposely put decimal point as ",".
First thing to do is replace the commas into points (or points to commas to suit your need in mac). so in B1, i convert it with =SUBSTITUTE(A1,",",".")
.
For formula in C1, first select the cell you want to place the calculated output (its C1 in my example), then create a name range as follow with the formula =EVALUATE(Sheet1!B1)
. After that place the formula =EvaluateIt
in C1.
after that just fill down the formula and you can convert text formula into its calculated value.