Mr.IncrediblyBored
Lifer
Uh, so did I. Did you even read my first comment? And I quote: *ahem*Originally posted by: Descartes
He's better off keeping the data stored accurately in the database. If he has a number of 50 being stored, for some reason, as 0000.50 in the database, the last thing he should do is massage the data into being correct for output. If he wants a numeric field to display with some funky formatting, he should convert it to a string and pad the data with zero's. I'm not suggesting he change the datatype of the column.
I said for *display*, not to actually alter the data. {SNIP}
keep it in standard float format (0.0), and convert it to a character (0000.00) for display purposes.