issue with converting number of product to dozen.
I have 40 products and I want to convert it into dozen.
when I use this calculation 40 / 12 = 3.3333333333333335
and number_format
to 1 decimal it returns 3.3
but it means 39
products
so I want that if number after decimal are more than 2 i.e 3.33333
then it round to greater number after decimal that is 3.4
How can I convert that?