Need your help

Etibar

New Member
Joined
Aug 6, 2017
Messages
3
I have a list of row materials.for example: 100kg tobacco,100kg filters,100kg paper.
I know that to produce 1 pack of cigarette i need to have 0.001kg filter,0.001 tobacco and 0.001 paper.

What formula should i put there,so that i could see how many cigarettes can i produce with row materials that i have on hand?

Thank you
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
if you divided each 100kg by 0.001kg then picked the min value, then you would be able to see how many you could make from the minimum value

Excel Workbook
ABCD
1100100100
20.0010.0010.001
3100000100000100000100000
Sheet1
 
Upvote 0
If you have your raw material listed in column A, the available amounts of the materia in column B and the amount of each material to produce 1 unit of product in column C, then in D1
Code:
=INT(MIN(B1/C1, B2/C2, B3/C3))
This is based on the fact that the most you can produce is what you have material to use in manufacturing.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,217,326
Messages
6,135,906
Members
449,970
Latest member
pfisher99

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