Round a formula in a sum

CSHEP3K

New Member
Joined
Jun 8, 2020
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi all,
I need to calculate how many pieces of MDF I can cut from a sheet at a certain size.

For example:

I need 206 meters at 350mm wide

The sheet size is 1220mm wide and 2000mts long

So I know on this occasion I can cut 3 pieces at 350mm wide at 2 meters long. This is obviously 6mts total

I would be left with some waste which I do not want included in my calculation

I am trying to create a sum that looks something like this, but I know this is not correct.


=ROUNDUP(SUM(250/((1220/350)*2)),0) This would return a sum of 36 Sheets but the quantity needed is actually 42

This is because the formula produces 3.48 as the answer from the (1220/350), but as I am calculating how many whole 350's I can get out of 1220 I need this to round down to 3.

As I have hundreds of different widths to calculate on a daily basis it would be great to have a formula set where I only have to change the width each time.

Any help would be greatly appreciated

Kind regards

Carl
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Your numbers don't make sense to me, however I think the formula to calculate how many pieces you can cut from a sheet is:
Total Number = (Rounddown(Sheetwidth/piecewidth,0)) *(Rounddown(Sheetlength/piecelength,0))
 
Upvote 0
Hi thanks for the reply.
Its not quite what I am looking but I probably didn't explain it great

I want to divide my total lengths (250) by the number of lengths I can get from a sheet

my variant is how many widths I can cut from a sheet.
If we say my starting sheet is 1000 long by 500 wide and i need a piece cut to size at 1000 x 400 I get 1 piece out of a sheet and a scrap piece at 1000 x 100.

If i need 5 piece at 1000 x 400 logically I know I would need 5 sheets and would be left with 5 scrap pieces at 1000 x 100, but the formula incorporates the scrap pieces and thinks it makes a whole section so calculates i only need 4 sheets.
This becomes a problem when I am needing 25000 pieces at 1000 x 400

What I want to do is divide my total pieces required by the number of whole widths I can cut

Example =25000/ROUNDDOWN((500/400),0)

So we would get the sum 2500/1 rather than 2500/1.25

does that make more sense??
 
Upvote 0
Not sure I fully understand, but maybe

+Fluff New.xlsm
AB
4Sheet width350
5Req'd width1220
6Qty250
784
Main
Cell Formulas
RangeFormula
B7B7=ROUNDUP(B6/ROUNDDOWN(B5/B4,0),0)
 
Upvote 0
Doesn't matter that you didn't quite understand because you nailed it.
That's perfect thank you
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,392
Messages
6,119,255
Members
448,879
Latest member
oksanana

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top