I am writing a formula in excel in which I am diving 2 numbers and I don\'t want value in decimal.
I tried using ROUND(5/10,0) but it round of 0.5 to 1.
But my
You can use the function ROUNDDOWN.
ROUNDDOWN
Example:
ROUNDDOWN(15/10,0)
The second parameter stands for the precision. Zero means that you won't have any decimal numbers.