I have a Percentage Calculator running like so:
(Current Progress Integer ÷ Max Progress Integer) x 100
Here's an example:
(1273 ÷ 1274) x 100
which results as 99.9215071
but when I do .ToString into a Label it outputs as 100
when obviously it isn't. It seems to be Rounding Up which I don't want.
How can I get around this and post it as 99