At 06:37 PM 2/9/2009 +1300, Sytze de Boer wrote: >How do I stop a number such as 845092370570 turning into 8.450E+11 when I >say str(mylongnumber)
I think you need to specify the number of digits (2nd parm in STR() function). If you don't, it defaults to 10 - which would then force the scientific notation. E.g. use STR(mylongnumber, 20) HTH, -Charlie _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech Searchable Archive: http://leafe.com/archives/search/profox This message: http://leafe.com/archives/byMID/profox/[email protected] ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

