How to round technically correct

If you need to round to two decimal places, then first multiply the number by 100, then round it, and finally divide by 100:
RoundNumber = round(myNumber * 100)/100

2 Likes