Tough one. Rolled material formula.

craigwojo9

New Member
Joined
Jul 23, 2013
Messages
11
I need a simple input spreadsheet for figuring material remaining on a roll.

Three inputs needed and one formula created.
Outside Diameter of Rolled Material
Thickness of Material
Diameter of Center Hole
Formula output - Length of Material

I just need the formula figured... do not know where to start.

Here is a link to the calculator I need created.

Cut Smart : LENGTH ON ROLL CALCULATOR

Thank you so much and God bless,
Craig
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Maybe a starting point Length of material on roll , Appears quite close to "Calculator"
Code:
Function Lgh(MaxD As Double, MinD As Double, Th As Double) As Double
Dim L As Double, D As Double
D = MinD
 Do Until D >= MaxD
  L = L + D * Application.Pi
  D = D + 2 * Th
 Loop
Lgh = (L - Application.Pi * MinD) / 1000 'Divide by 12 for Feet
End Function
 
Upvote 0
The basic formula is:

Code:
Pi x ((Ouside Radius^2) – (Core Radius^2)) / Caliper = Linear Inches

The .06545 in the shorter formula in Pi divided by 48, which is a constant to change the LI to LF.

Note that the formula assumes the caliper remains constant (usually not the case in a manufacturing process) and there is a tight wrap around the core.
Excel Workbook
ABC
1Unit
2Outer Diameter60Inch
3Outer Diameter of Core4Inch
4Caliper0.014Inch
5
6
7Linear Inches201061.9Inch
8Linear Feet16755.16Feet
9
10Shorter formula for LF16755.2Feet
11
Sheet
 
Upvote 0
The basic formula is:

Code:
Pi x ((Ouside Radius^2) – (Core Radius^2)) / Caliper = Linear Inches

The .06545 in the shorter formula in Pi divided by 48, which is a constant to change the LI to LF.

Note that the formula assumes the caliper remains constant (usually not the case in a manufacturing process) and there is a tight wrap around the core.
Excel Workbook
ABC
1Unit
2Outer Diameter60Inch
3Outer Diameter of Core4Inch
4Caliper0.014Inch
5
6
7Linear Inches201061.9Inch
8Linear Feet16755.16Feet
9
10Shorter formula for LF16755.2Feet
11
Sheet
Thank you! ?
 
Upvote 0

Forum statistics

Threads
1,216,091
Messages
6,128,775
Members
449,468
Latest member
AGreen17

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