Thanks so much! That helps immensely!
Main Topics
Browse All TopicsI am building a report that has a field for sales figures. How do I make the total sales column display as a currency format (USD) - ($0.00)?
TIA!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Just expanding on the above post - thank you for that
in SQL BI Development Studio
selecting in layout the textbox that is required to look like $0.00 or $1.40 etc
just placing the letter C in the properties format did the trick
Previously I was using $#,###.## which produced a $ when the number was zero or worse a $1.4 for the one dollar and fourty cents example.
Business Accounts
Answer for Membership
by: rscowdenPosted on 2008-01-05 at 02:31:52ID: 20588677
Textboxes in the Report Designer have a Format property that takes .NET Framework formatting codes. For simple currency formatting you can specify "C". If you right click a textbox and select properties, then go to the Format tab, you will see some of the options that are available. If you click the "..." to the right of "Format code", one of the standard codes available is "currency." For more information about more complex formats, ask for help while in that dialog.
You can also use the Format() function in an expression in a textbox, rather than using the Format property--the formatting codes are the same. And you can do your own special formatting directly in VB.NET, in an expression.