I’ve got a value coming into my Crystal Report. I need to print it in the format:
“*” & myNumber & “*”
I just can’t seem to be able to tell it that the number I want is an integer.
So I end up with something equivalent to this:
“*” & myNumber & “.00*”
I don’t want those decimal values there. I just want an asterisk, the integer value of my number, and another asterisk.
How can I get that to happen?
You could do that with a formula
"*" + ToText({table.field}, 0) + "*"or simply insert the field into a text box, right click that field, and set the decimal precision from the number tab.