nahaku
Board Regular
- Joined
- Mar 19, 2020
- Messages
- 106
- Office Version
- 365
- 2019
- Platform
- Windows
Good day. In my list is list of items what needs to be scanned with their current location. But i found out there are items in list with multiple entries of different Qtty and their locations. Is possible to make something so when I insert the barcode in the cell "B19" it will show entries for all same items? only difference should be in Quantity and Location I think. so if it could show them next to it? i have about 1000 entries in Refference table.
1.My first idea, before I found out there are some barcodes twice was use LOOKUP, but it only looks to list until it finds first match :{
2. I found on internet this function: =IFERROR(INDEX(B3:G15, SMALL(IF($B19=$B$3:$B$15, ROW($F$3:$F$15)-2,"TEST1"), COLUMN()-4)),"TEST2") I tried with Ctrl+Shift+enter, no success
but it always show only the Error ... =TEST2, when I checked it those function separatly the index can see that B19 is scanned but it does returns error anyway.
Thank you
1.My first idea, before I found out there are some barcodes twice was use LOOKUP, but it only looks to list until it finds first match :{
2. I found on internet this function: =IFERROR(INDEX(B3:G15, SMALL(IF($B19=$B$3:$B$15, ROW($F$3:$F$15)-2,"TEST1"), COLUMN()-4)),"TEST2") I tried with Ctrl+Shift+enter, no success
but it always show only the Error ... =TEST2, when I checked it those function separatly the index can see that B19 is scanned but it does returns error anyway.
Thank you
Scanning Test.xlsx | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | |||
1 | Refference Table | ||||||||||||
2 | No. | SKU | UPC | Name | QTY | Location | Status | TEST2 | |||||
3 | 1 | 1asd65sa1d | xxx | auto | 1 | 001.09.3.1 | Not Seen | ||||||
4 | 2 | 65asd65 | zzzxxcvnm | mobil | 1 | 001.09.3.1 | Scanned | ||||||
5 | 3 | 1zxc6zxc6 | adsda | motorka | 2 | 001.22.1.1 | Not Seen | ||||||
6 | 4 | 3zxcsad6 | zxczv | slnko | 1 | 001.25.3.1 | Scanned | ||||||
7 | 5 | 4zxc9xz4c | zxvgag | babika | 1 | 001.32.1.1 | Not Seen | ||||||
8 | 6 | 6z4xc6zx4c | asdzxv | sito | 1 | 999.90.1.1 | Not Seen | ||||||
9 | 7 | 5xzc6z4xc6 | hgfhjfg | kvety | 1 | 999.90.1.1 | Not Seen | ||||||
10 | 8 | 65zxc654xcz | dsvxc | kozi | 1 | 999.90.1.1 | Not Seen | index array dole | |||||
11 | 9 | 2xcz64zxc6 | asdfzxc | lodka | 1 | 999.90.1.1 | Scanned | TEST2 | |||||
12 | 10 | f64sdf6 | asfxzc | pulover | 4 | 999.90.1.1 | Not Seen | ||||||
13 | 11 | gfd64g | safzxvc | slimak | 1 | 999.90.1.1 | Not Seen | ||||||
14 | 12 | 3zxcsad6 | haf | slnko | 1 | 999.90.1.1 | Scanned | ||||||
15 | 13 | 3v5zxv8sa | ncvbcv | parkovisko | 2 | 999.90.1.1 | Not Seen | ||||||
16 | |||||||||||||
17 | "B" Cells | items what were scanned and check against the Refference Table | |||||||||||
18 | Scanned SKU Barcode | Name | QTY | Location | QTY | Location | QTY | Location | QTY | Location | |||
19 | 65asd65 | mobil | 1 | 001.09.3.1 | |||||||||
20 | 3zxcsad6 | slnko | 1 | 001.25.3.1 | |||||||||
21 | 2xcz64zxc6 | lodka | 1 | 999.90.1.1 | |||||||||
22 | Not Found | ||||||||||||
23 | Not Found | ||||||||||||
24 | Not Found | ||||||||||||
Sheet2 |
Cell Formulas | ||
---|---|---|
Range | Formula | |
J2 | J2 | =IFERROR(INDEX($B$3:$G$15, SMALL(IF("$C19"=$B$3:$B$15, ROW($F$3:$F$15)-2,"TEST1"), COLUMN()-5)),"TEST2") |
J6 | J6 | =IFERROR(INDEX(F3:F15,SMALL(IF(groups=$B19,ROW(F3:F15)-MIN(ROW(F3:F15))+1),COLUMNS($B$19:B19))),"") |
J11 | J11 | =IFERROR(INDEX(B3:G15, SMALL(IF($B19=$B$3:$B$15, ROW($F$3:$F$15)-2,"TEST1"), COLUMN()-4)),"TEST2") |
G3:G15 | G3 | =IF(OR(COUNTIF($B$19:$B$35,"*"&$B$3:$B$15&"*")),"Scanned", "Not Seen") |
C22:C24,C19:E21 | C19 | =IFERROR(XLOOKUP($B19,$B$3:$B$15,$D$3:$F$15,"Not Found",0,1),"") |
Press CTRL+SHIFT+ENTER to enter array formulas surrounded with curly braces. | ||
Dynamic array formulas. |