I am trying to trim zeros from data like the value is 3900.0 and I want it to look like 39.00. What would be a good rtrim use? THanks
[quote user="Klass49"] I am trying to trim zeros from data like the value is 3900.0 and I want it to look like 39.00. What would be a good rtrim use? THanks [/quote] The value 3900.0 is certainly different from 39.00 and RTRIM() would not help you in that regard. Looks like a division / 100 could give you the result you want. However, if this is only used for presentation purposes, you should do this in your client.