Hi,
I am importing data from excel file and there is one important column coming as scientific format number 1.68E+19 how to convert it to text with correct result, I tried to convert excel cell format to number but given me like this format 16752100000000000000.
If you can support a way to fix it, even inside PowerBuilder or outsaid.
Thank you
"Double
A signed floating-point number with 15 digits of precision and a range from 2.2250738585073E-308 to 1.79769313486231E+308, and -2.2250738585073E-308 to -1.79769313486231E+308."
But it's not working, updating my ticket ...
Remember to use a dot at the end of your number!
double ldbl_num = 16752100000000000000.
string ls_result
ls_result = String ( ldbl_num )
MessageBox("Test",ls_result)
Thank you very much! That indeed solves the problem.
It's my opinion though that it's ridiculous that we have to write the "." for this to work correctly!
Another quirk of Powerbuilder to remember!!!
Wow!