help on excel....

spp

Golden Member
Jul 9, 2001
1,513
0
76
i have a bunch of data in the form like

1.531u
1.633u
....... and so on..... where u is micron (e-6).... the excel graph doesn't recognize it, so my graph is all messed up.

Is there anyway to tell excel to convert the u, n, m, and such into e-6, e-9, and such?
 

spp

Golden Member
Jul 9, 2001
1,513
0
76
for text?? but i want it to be number though (e-6..... .10^6....... scientific notation??)
 

spp

Golden Member
Jul 9, 2001
1,513
0
76
$number = "1.531u";
$number =~ s/[^\d.]//g;
$number /= 1000000;


sorry i'm dumb..... do you mind explaining that??