Inventory Management

Than Htaik

New Member
Joined
Sep 4, 2011
Messages
3
Hi, Dear all,

I would like to ask a simple problem what I'm facing :(.
There are three columns , Stock Balance(A),Excess Stock(B) and Average Consumption(C).
They words in inverted comma are outputs I want.
Check this
A B C
1 =0 =0 =0 "Not Using"
2 >0 >0 >0 "=B3/C3"
3 =0 =0 >0 "Stock Out"
5 >0 >0 =0 "Dead Stock"


Could you please have a look and suggest the suitable formula for me:confused:

Regards,
 
Last edited:

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Welcome to MrExcel.

How about?

=IF(AND(A1=0,B1=0,C1=0),"Not Using",IF(AND(A1>0,B1>0,C1>0),B3/C3,IF(AND(A1=0,B1=0,C1>0),"Stock Out",IF(AND(A1>0,B1>0,C1=0),"Dead Stock"))))
 
Upvote 0

Forum statistics

Threads
1,224,586
Messages
6,179,730
Members
452,939
Latest member
WCrawford

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