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 INT to find the next lower integer.
INT
=INT(5/10)
0
=INT(15/10)
1
=INT(25/10)
2
=INT(-1/10)
-1
=INT(-15/10)
-2