Update Inventory Status - Need Recommendations

Marky31mark

New Member
Joined
Oct 26, 2016
Messages
16
Hello, I am wondering if someone could help me with some suggestions on inventory sheet that I have. Currently, this sheet is distributed to our customers and lets them know if a product is In stock/Out of Stock/Low Stock or Very Low stock. Also, this sheet provides a Available date based on when we expect new product to be received and available.

I have to update this sheet everyday based on our daily inventory. I am looking for a simple suggestions on how I can update this sheet everyday. I am new with my company and this process is very time consuming part of my day.

I am looking for a way to update this sheet based on previous 12 month sales history and current product availability. Because every item sells different, I cant simply say anything under 100 is low stock, because we may only sell 85 a year, so it will have to be item specific. Also, some items sell faster than others, so we may sell out a few times a year. Example the 215088-13SG is one of our best selling items, so I need to make sure when I have this marked as Low Stock or Out of Stock, we have enough time to make sure we order more while still selling our inventory.

Also, we typically try and save a few items for samples etc. (Maybe 10 or 15), so we are not completely out if we need to bring one to a trade show.


Sample Data:
Most recent updates are highlighted in yellow - 02/06/2017
Home & Garden Inventory Updates
Item (Column A)Description (Column (B)UPC Code (Column C)Status (Column D)Available Date (Column E)12 Months of sales (02/01/2016 to 02/01/2017) (Column F)Current Available (02/07/2017) (Column G)
30421R012Glass Solar Birdbath123456789101In Stock581576
40326R014Solar Fountain: Boy & Girl Reading on Bench123456789102Out of Stock2/10/20179462
77336R015Umbrella Series Solar Fountain: Boy & Girl Piggyback123456789103In Stock132628
50622R018Country Gardens Solar Birdbath123456789104Out of Stock2/10/201797724
21833R022Acadia Solar Birdbath123456789105In Stock951405
227115-BMBirdbath - Blue123456789106Out of Stock3/20/20172291
777104-ORBirdbath - Orange123456789107In Stock122112
70757R013Mosaic Bath with Metal Stand123456789108Low Stock45874
22372R014Solar Koi Fountain123456789109Out of Stock3/20/201713516
21410R01Sunny Jam 1200123456789110In Stock2055957
215088-13RLGarden Torch - Red Lava123456789111Low StockTo be discontinued5570
215088-13SGApollo Ceramic Garden Torch - Sierra Garden123456789112In StockTo be discontinued83381133
21801R01Solar Oxygen Max123456789113In Stock86687

<tbody>
</tbody>
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
A
B
C
D
E
F
G
H
1
Item
Status
12MO sales
Available
Low stock at
2
30421R012
In Stock
581
576
70
3
40326R014
Out of Stock
946
2
85
4
77336R015
In Stock
132
628
627
5
50622R018
Low stock
977
24
85

<tbody>
</tbody>

You could add a column to list where you want each product to go to low stock.
In D2. Change the 15 to the minimum you want to keep on hand. When the number available goes below the number in the low stock it changes to Low Stock
Code:
=IF(G2<=[COLOR=#ff0000]15[/COLOR],"Out of Stock",IF(G2>H2,"In Stock","Low Stock"))
 
Upvote 0
Thank you for the great suggestion! Very simple and easy to set up.

Again, thanks.

This will make things much easier for me.
 
Upvote 0
How can I do this with 3 different levels?

In Stock = 100+
Low Stock = 100
Very Low Stock = 49
Out of stock = 15

I know this is multiple nested If functions, but the logic is screwing me up.

Thanks,
Mark
 
Upvote 0
If this is for all products then
Code:
=IF(G2<=15,"Out of Stock",IF(G2>100,"In Stock",IF(G2>49,"Low Stock","Very Low Stock")))
 
Upvote 0
perfect solution from Scott T
user-online.png


just a slightly alternate one to make it easier to see the logic ( I Think)

Code:
=IF(A1>100,"In Stock",IF(A1>49,"Low Stock",IF(A1>15,"Very Low Stock","Out Of Stock")))

there is several ways to arrive at desired answer using nested IF options
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,134
Members
449,488
Latest member
qh017

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