I'm using the following formula to calculate discount. I put the result in a string that I use to export to a CSV file.
Round (({MSRP}-{@Selling price})/{MSRP}*100,0)
The problem is the result displays with 2 decimal points:
69 percent displays as 69.00
I can't format the field in the report because it's part of a longer string. I need for the result of the formula to contain no decimals.
I tried this: INT(Round (({MSRP}-{@Selling price})/{MSRP}*100,0))
Still displays with .00 after it. Thanks in advance.
Round (({MSRP}-{@Selling price})/{MSRP}*100,0)
The problem is the result displays with 2 decimal points:
69 percent displays as 69.00
I can't format the field in the report because it's part of a longer string. I need for the result of the formula to contain no decimals.
I tried this: INT(Round (({MSRP}-{@Selling price})/{MSRP}*100,0))
Still displays with .00 after it. Thanks in advance.