Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

Convert exponential to Value

Hi,

How to convert exponential value to number pls suggest.

Pls find the attached sample data.

1 Solution

Accepted Solutions
jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

LOAD

     Num(Replace(@1, ',', '.'), '(dec)') AS Formatted_Decimal

FROM

[exponential fig.xls]

(biff, no labels, table is Sheet1$);

Regards,

jagan.

View solution in original post

5 Replies
manojkulkarni
Partner - Specialist II
Partner - Specialist II

Chanty4u
MVP
MVP

abhaysingh
Specialist II
Specialist II
Author

no luck

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

LOAD

     Num(Replace(@1, ',', '.'), '(dec)') AS Formatted_Decimal

FROM

[exponential fig.xls]

(biff, no labels, table is Sheet1$);

Regards,

jagan.

jonathandienst
Partner - Champion III
Partner - Champion III

The problem appears to be the , decimal. This works:

     LOAD Num(Replace(@1, ',', '.')) As Value

     FROM [exponential fig.xls]

     (biff, no labels, table is Sheet1$);

EDIT: beaten to it by Jagan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein