Thanks all,
   
  I settled for:
   
  Base = Number['E', 1, 1]
  Factor = Number['E', 2, 1]
  Result = Base * PWR(10, Factor)
   
  Regards, Marco

Brian Leach <[EMAIL PROTECTED]> wrote:
  Chuck,

You were right first time. Must be the hour.

Number = "1.234567E+14"

Base = Number["E",1,1]
Factor = Number["E",2,1]

Multiplier = "1" : Str("0", Factor)
If Factor < 0 Then
Result = Base / Multiplier
End Else
Result = Base * Multiplier
End
Crt Result

Should give: 123456700000000


Brian
-------
u2-users mailing list
[email protected]
To unsubscribe please visit http://listserver.u2ug.org/
  


                
---------------------------------
To help you stay safe and secure online, we've developed the all new Yahoo! 
Security Centre.
-------
u2-users mailing list
[email protected]
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to