SOLVED

Formulas and Functions

Copper Contributor

Good afternoon,

I need a calculation and I can't quite figure it out on my own.

We have for weighed products which belong to a certain entered width. Suppose I have a number between 1 and 100 then I need 1 product.

But if I have a width between 101 and 200 then I need 2 of those products and if between 201 and 300 I need 3 and so on.

Can someone help me with how to calculate this in excel?

 

Thanks.

4 Replies

@DUVELISO 

Let's say you enter a number in A2.

Enter the following formula in B2: =ROUNDUP(A2/100,0)

This can be filled down if you have more numbers in A3, A4 etc.

Bedankt Hans maar dat lijkt niet te werken
best response confirmed by DUVELISO (Copper Contributor)
Solution

@DUVELISO 

Wat is het probleem?

Als je komma als decimaalscheider gebruikt, moet je puntkomma in de formule gebruiken:

 

=ROUNDUP(A2/100;0)

 

of in het Nederlands

 

=AFRONDEN.NAAR.BOVEN(A2/100;0)

Dat werkt wel :) Ik had je formule gekopieerd =AFRONDEN.NAAR.BOVEN(A2/100,0) met een komma tussen de /100,0 maar dat moest een ; zijn.

Het werk nu! Heel erg bedankt.
1 best response

Accepted Solutions
best response confirmed by DUVELISO (Copper Contributor)
Solution

@DUVELISO 

Wat is het probleem?

Als je komma als decimaalscheider gebruikt, moet je puntkomma in de formule gebruiken:

 

=ROUNDUP(A2/100;0)

 

of in het Nederlands

 

=AFRONDEN.NAAR.BOVEN(A2/100;0)

View solution in original post