KingRichard3
Programmer
Is there an easy way to convert
a double: 1234.56
to this: $1,234.56
?
Thanks,
Rick
a double: 1234.56
to this: $1,234.56
?
Thanks,
Rick
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT '$' + CONVERT(varchar(20), CAST(Amount AS money), 1)
Select dbo.FormatNumber(Amount, 1, '$') From TempNumeric
I'll bet on a 6 to 1 speed difference in this case.