Cells to automatically update - inventory tracking status

sgray1

New Member
Joined
Jun 19, 2021
Messages
10
Office Version
  1. 365
Platform
  1. Windows
Hi there,

I have setup an inventory tracking sheet to tracking product coming into my warehouse, then being retagged and then dispatched. I am looking for a formula that will update the "status" (column Q of the first sheet) of stock based on different criteria. If stock coming into the warehouse does not have a new packet number assigned (LL Packet number in Column B of the first sheet) then the status will need to be "in". Once a new Packet number is assigned to an existing packet number then the status will need to update to "WIP". Once the new Packet number is moved to a third sheet to show its been dispatched then I need the status to change to "dispatched". I have setup 3 sheets to capture the In, Retag and Dispatch. What's the best solution to have Column Q update automatically to reflect this based on those 3 criteria's?

Thanks in advance.

Book1
ABCDEFGHIJKLMNOPQ
1PacketLL Packet Number Old GradeTreatDry FinishWidth ThickMax LengthOld PieceFreight CMCMLineal DescriptionRunBuy PriceStatus
2PPS09401LL112217BOXUTKDBLK15025480.720.841224.3150x25 BOX UT KD BLK1350Dispatched
3PSE15501PSE15501BOXUTKDRS100251442.12.1840100x25 BOX UT KD RS1350Dispatched
4PSE15504LL112217BOXUTKDRS2002500.30.360200x25 BOX UT KD RS1350Dispatched
5PPS08201LL112131BOXUTKDRS30025160.5560.55674.1300x25 BOX UT KD RS1350WIP
6PPR14022LL112130BOXUTKDRS30025180.6620.66288.3300x25 BOX UT KD RS1350WIP
7PSE10543BOXUTKDRS3002500.50.566.7300x25 BOX UT KD RS1350IN
8PSE10585BOXUTKDRS3002500.60.680300x25 BOX UT KD RS1350IN
IN


Book1
ABCDEFGHIJKLMNOP
1LL Docket NumberDescription RunGradeTreatDryFinish WidthThickPieceFreightVolumeLMOriginal PacketActual discriptionStatus
2LL112133300x25 C1 UT KD RS1C1UTKDRS30025180.5670.56775.6PPS09401300x25 C1 UT KD RSDispatched
3LL112134300x25 C1 UT KD RS1C1UTKDRS30025512.0652.065275.4PSE15501x C1 UT KD RSDispatched
4LL112132300x25 C1 UT KD RS1C1UTKDRS30025481.7281.728230.4PSE15504x C1 UT KD RSDispatched
5LL112131100x25 C1 UT KD RS1C1UTKDRS100251381.4571.457582.9PPS08201x C1 UT KD RSWIP
6LL112130150x25 COL UT KD RS1COLUTKDRS150251051.8051.805481.2PPR14022x COL UT KD RSWIP
Retag


Book1
ABCDEFGHIJKLMNO
1LL Docket NumberDescription RunGradeTreatDryFinish WidthThickPieceFreightVolumeLMOriginal PacketActual discription
2LL112133300x25 C1 UT KD RS1C1UTKDRS30025180.5670.56775.6PPS09401300x25 C1 UT KD RS
3LL112134300x25 C1 UT KD RS1C1UTKDRS30025512.0652.065275.4PSE15501x C1 UT KD RS
4LL112132300x25 C1 UT KD RS1C1UTKDRS30025481.7281.728230.4PSE15504x C1 UT KD RS
Dispatch


Book1
A
1Status
2IN
3WIP
4Dispatched
Status list
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
This will work if you put in Q2 and fill down.
Excel Formula:
=IF(B2="","IN",IF(IFERROR(VLOOKUP(B2,Dispatch!A:A,1,0),0)<>0,"Dispatch",IF(IFERROR(VLOOKUP(B2,Retag!A:A,1,0),0)<>0,"WIP","Error")))
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,322
Members
452,635
Latest member
laura12345

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