S
Steve C
Upon dividing one cell by another, I want to store the result in a variable
that is rounded to the nearest whole number (6.5 = 7, 6.2 = 6, etc.).
My basic formula is:
NamesPerSlip = ActiveCell.Offset(0, -3) / ActiveCell.Offset(0, -2)
Rounding NamesPerSlip up or down as needed is my challenge. Thanks as always!
that is rounded to the nearest whole number (6.5 = 7, 6.2 = 6, etc.).
My basic formula is:
NamesPerSlip = ActiveCell.Offset(0, -3) / ActiveCell.Offset(0, -2)
Rounding NamesPerSlip up or down as needed is my challenge. Thanks as always!