J
John Croson
I have a workbook with a few sheets in it.
One has master data:
Status Item # Description
Film Former Pkg Lot Code format
A 00121 My item
00131 - XYZXYZ
Many lines of data. I have another sheet that users are instructed to
enter the item number ( In Cell B1), and it populates a cell below
with VLOOKUP data. There are a number of cells that do this.
This formula displays the Description.
=IF($B1<>"",VLOOKUP($B1,MasterInfo!$C$3:$D$228,2,FALSE),"")
The conundrum is the Status field. What we'd like to do is:
1. Check if a number entered in B1 matches one in the MasterInfo
sheet.
2. If it does, display the description IF the Status is A. If the
status is I, display "Inactive Profile". If the Status is P, display
"Pending Profile".
Anyone that could assist me is greatly appreciated.
One has master data:
Status Item # Description
Film Former Pkg Lot Code format
A 00121 My item
00131 - XYZXYZ
Many lines of data. I have another sheet that users are instructed to
enter the item number ( In Cell B1), and it populates a cell below
with VLOOKUP data. There are a number of cells that do this.
This formula displays the Description.
=IF($B1<>"",VLOOKUP($B1,MasterInfo!$C$3:$D$228,2,FALSE),"")
The conundrum is the Status field. What we'd like to do is:
1. Check if a number entered in B1 matches one in the MasterInfo
sheet.
2. If it does, display the description IF the Status is A. If the
status is I, display "Inactive Profile". If the Status is P, display
"Pending Profile".
Anyone that could assist me is greatly appreciated.