Hello All,
What would be the best approach to tackle the following:
I am getting a number from Database. I need to format it so it would appear as percentage.
Ex: if I get 58 then it should look like 5.80
if I get 120 then it should look like 12.00
if I get 5 then it should look like 0.50.
I am using SQL 7, so I cannot use UDF. (And I cannot format it on the front end)
I feel that I need to write a lot of Case statements??..
Please let me know.