I need to learn to format text boxes in the report design to not have any decimals but to have commas when needed.
Any help is appreciated.
I dont understand very well your question but to remove decimals you only have to convert to int
=Cint(Fields!field.value)
|||You can just set the Format property of the textbox using Standard Format Strings.
For example c2 is Currency with 2 decimals. I think what you want is n. Check out the link so you can decide for yourself the format you are looking for.
If the Standard formats don't do the trick check out Custom Formatting.
|||Thanks everyone! I am using numbers and found that I can use n0 or n + zero to make the textbox display as a number with 0 prescision.
Take care.
No comments:
Post a Comment