excel - Convert a string with a carat to a number (and evaluate) -


i have column of imported numbers in format 123.4 decimal here should signify "to power" of i.e. ^

i want display in column evaluated value. 123.4 display 228886641.

i used substitute command replace decimal ^, giving me 123^4, looks not number. if use value command on output substitute (the text string 123^4) though #value! error.

how 123.4 228886641?

use =int(a1)^mid(a1,search(".",a1)+1,1) or risk power being either .4 or 40 in example.


Comments

Popular posts from this blog

linux - xterm copying to CLIPBOARD using copy-selection causes automatic updating of CLIPBOARD upon mouse selection -

c++ - qgraphicsview horizontal scrolling always has a vertical delta -