I need to convert a numeric field to a varchar but don't want more than two decimal points to show. It is part of a case statement.
Right now I have:
When field.value is not null then RTRIM (CAST (field.value as varchar (245)))
How can I change that so that it returns a text number like 1.00 instead of 1.0000?
Thanks!
Right now I have:
When field.value is not null then RTRIM (CAST (field.value as varchar (245)))
How can I change that so that it returns a text number like 1.00 instead of 1.0000?
Thanks!