excel - VBA Round Function - Stack Overflow
There are two ways that you can do that.-Select your range and change the number format: Range("myrange").Select Selection.NumberFormat = "0.00" -Loop through all the cells in your range and apply the Round function to each of them. In VBA you won't be ab...