ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Need Help: Determine Equipment Capacity (https://www.excelbanter.com/excel-programming/383645-need-help-determine-equipment-capacity.html)

Will[_12_]

Need Help: Determine Equipment Capacity
 
I am trying to create a formula that can determine equipment capacity.

A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time

I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.


Bob Phillips

Need Help: Determine Equipment Capacity
 
Can you give an example of the actual values, and the results you would like
to see?

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Will" wrote in message
ups.com...
I am trying to create a formula that can determine equipment capacity.

A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time

I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.




Tom Ogilvy

Need Help: Determine Equipment Capacity
 
You get total time available with (A1*A2*A3)
You get total time needed by each part with b1*C1 , b2*c2, b3*c3

sum the total time required and subtract the time available. If it is a
positive numbe, you have excess capacity. If it is negative, then you need
to determine which part or parts will not be produced and use the cycle time
to figure out the decrease in amount.

--
Regards,
Tom Ogilvy







"Will" wrote:

I am trying to create a formula that can determine equipment capacity.

A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time

I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.



Will[_12_]

Need Help: Determine Equipment Capacity
 
On Feb 21, 9:04 am, "Bob Phillips" wrote:
Can you give an example of the actual values, and the results you would like
to see?

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Will" wrote in message

ups.com...



I am trying to create a formula that can determine equipment capacity.


A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time


I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.- Hide quoted text -


- Show quoted text -


A1 = 25800 seconds per shift
A2 = 3 Shifts
A3 = 240 Days Available
B1 = 1,000,000 Part A Volume
B2 = 300,000 Part B Volume
B3 = 200,000 Part C Volume
C1 = 10 Seconds to make Part A
C2 = 20 Seconds to make Part B
C3 = 15 Seconds to make Part C

If I take A1*A2*A3 the result would be 18,576,000 seconds available
per year. B1*C1 results in 10,000,000 seconds to build B1. B2*C2
results in 6,000,000 seconds to build B2. B3*C3 results in 3,000,000
seconds to build C3. With all the times combined I need 19,000,000
seconds to build the required volume of parts.

I only have one piece of equipment available to make Parts A, B, and
C. So basically I need to be able to say that I need 1.02 pieces of
equipment to produce the required volumes.



Tom Ogilvy

Need Help: Determine Equipment Capacity
 
=(B1*C1+B2*C2+B3*C3)/(A1*A2*A3)

give me 1.02282515073213

--
Regards,
Tom Ogilvy


"Will" wrote:

On Feb 21, 9:04 am, "Bob Phillips" wrote:
Can you give an example of the actual values, and the results you would like
to see?

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Will" wrote in message

ups.com...



I am trying to create a formula that can determine equipment capacity.


A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time


I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.- Hide quoted text -


- Show quoted text -


A1 = 25800 seconds per shift
A2 = 3 Shifts
A3 = 240 Days Available
B1 = 1,000,000 Part A Volume
B2 = 300,000 Part B Volume
B3 = 200,000 Part C Volume
C1 = 10 Seconds to make Part A
C2 = 20 Seconds to make Part B
C3 = 15 Seconds to make Part C

If I take A1*A2*A3 the result would be 18,576,000 seconds available
per year. B1*C1 results in 10,000,000 seconds to build B1. B2*C2
results in 6,000,000 seconds to build B2. B3*C3 results in 3,000,000
seconds to build C3. With all the times combined I need 19,000,000
seconds to build the required volume of parts.

I only have one piece of equipment available to make Parts A, B, and
C. So basically I need to be able to say that I need 1.02 pieces of
equipment to produce the required volumes.




Bob Phillips

Need Help: Determine Equipment Capacity
 
=ROUND(SUMPRODUCT(B1:B3,C1:C3)/PRODUCT(A1:A3),2)

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)



"Will" wrote in message
oups.com...
On Feb 21, 9:04 am, "Bob Phillips" wrote:
Can you give an example of the actual values, and the results you would
like
to see?

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Will" wrote in message

ups.com...



I am trying to create a formula that can determine equipment capacity.


A1 = Seconds/Per Shift Avail.
A2 = Number of Shifts Scheduled
A3 = Number of Days Scheduled
B1 = Part A Annual Volume
B2 = Part B Annual Volume
B3 = Part C Annual Volume
C1 = Part A Cycle Time
C2 = Part B Cycle Time
C3 = Part C Cycle Time


I am just beginning to learn formulas in Excel and I am able to
determine the capacity for one Part. The problem is combining
multiple cycle times to determine capacity. Thanks in advance for the
help.- Hide quoted text -


- Show quoted text -


A1 = 25800 seconds per shift
A2 = 3 Shifts
A3 = 240 Days Available
B1 = 1,000,000 Part A Volume
B2 = 300,000 Part B Volume
B3 = 200,000 Part C Volume
C1 = 10 Seconds to make Part A
C2 = 20 Seconds to make Part B
C3 = 15 Seconds to make Part C

If I take A1*A2*A3 the result would be 18,576,000 seconds available
per year. B1*C1 results in 10,000,000 seconds to build B1. B2*C2
results in 6,000,000 seconds to build B2. B3*C3 results in 3,000,000
seconds to build C3. With all the times combined I need 19,000,000
seconds to build the required volume of parts.

I only have one piece of equipment available to make Parts A, B, and
C. So basically I need to be able to say that I need 1.02 pieces of
equipment to produce the required volumes.






All times are GMT +1. The time now is 05:57 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com