This tutorial explains how to use Excel Round Function
Excel Round Function
There are several kinds of Rounding in Excel - Round, Round up, Round down, Mround, plus Banker's Rounding in VBA.
Excel Round Function is the most commonly used round, it uses "round half to up" logic, round up if the decimal part >=0.5, round down if decimal part <0.5
Syntax of Excel Round Function
ROUND( number, digits )
number
The number you want to apply rounding
digits
An integer that ...
Read More