Apr 6, 2004 #1 rpal Programmer Jun 16, 2003 37 US Using ROUND function I can get round after decimal but I want to display only 2 decimals after the point. Ex: ROUND(2275.4559, 2) Results: 2275.4600 But I want to display only 2275.46 Thanks in advance.
Using ROUND function I can get round after decimal but I want to display only 2 decimals after the point. Ex: ROUND(2275.4559, 2) Results: 2275.4600 But I want to display only 2275.46 Thanks in advance.
Apr 6, 2004 #2 checkai Programmer Jan 17, 2003 1,629 US Code: CONVERT(VARCHAR,CAST(ROUND(2275.4559, 2) AS MONEY),1) Upvote 0 Downvote