Need some help here. I'm trying to update a column in one of my tables to take the Spend amount from 1 column and divide it by 0.85 and display at with only 2 decimal places. I have tried the ROUND
function and I am currently using the CAST
function to list the field as a DECIMAL
in which I've tried (38,2), (30,2), etc. and none work. Here's a copy of what I'm trying to do :
(CAST(NetMediaSpend as decimal (38,2)))/.85
and even after I run it and look at my data I still see the value stored as :
13712.941176
How do I get it to only display 2 decimals of 13712.94 ?