12 point decimal system

N

Nick P

I inventory boxes of playing cards at work that contain 12 decks of cards in
box. Is there a way to add the nuber of decks (12) in a column that will
equal (1) box?

EX: Say I have added a column of decks up and the total is 50. I would
like the total to equal 4.2 (12 decks equals 1 box; 48 decks equals 4 boxes;
50 decks equals 4 boxes + 2 deck = 4.2 boxes)

Is this type of addition possible to achieve in excel?
 
N

Nick P

This formula is not quite right. Say I have a total of 47 decks. This
would be 3 boxes of 12 (36) plus 11 decks. I would want my total to read
3.11 and your formula is reading 4.1
 
R

Ron Rosenfeld

I inventory boxes of playing cards at work that contain 12 decks of cards in
box. Is there a way to add the nuber of decks (12) in a column that will
equal (1) box?

EX: Say I have added a column of decks up and the total is 50. I would
like the total to equal 4.2 (12 decks equals 1 box; 48 decks equals 4 boxes;
50 decks equals 4 boxes + 2 deck = 4.2 boxes)

Is this type of addition possible to achieve in excel?

If you could express 50 as 4.02, then:

=INT(A1/12)+MOD(A1,12)/100

or if you have the Analysis ToolPak installed:

=dollarfr(A1/12,12)

If 50 must be expressed as 4.2, then:

=INT(A1/12)+MOD(A1,12)/10^(1+(MOD(A1,12)>=9))


--ron
 
R

Ron Rosenfeld

If you could express 50 as 4.02, then:

=INT(A1/12)+MOD(A1,12)/100

or if you have the Analysis ToolPak installed:

=dollarfr(A1/12,12)

If 50 must be expressed as 4.2, then:

=INT(A1/12)+MOD(A1,12)/10^(1+(MOD(A1,12)>=9))


--ron

The last formula is in error. Should be:

=INT(A1/12)+MOD(A1,12)/10^(1+(MOD(A1,12)>9))


--ron
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top