Can you tell me how I can round a number up to the next whole number? For example, if I have the number 4.1, I would like it to become 5. Is there a function in Make that can help me do this? I already use the round function but it only works if the number is 4.5 or higher.
That’s where you’d wanna apply the ceil function.
What it does is that it t takes a number and rounds it up to the next highest whole number.
For example, if you give it the number 3.4, it will return the number 4.