NWPhotoExplorer
New Member
- Joined
- Jan 19, 2021
- Messages
- 34
- Office Version
- 365
- Platform
- Windows
- MacOS
Hi! I am new to designing forms in Excel.
I am working on trying to make a form where the user can select the drop-down and select the item (shirt, jacket, etc), then the next drop-down will pull up the various options (color, etc), and the next drop-down will pull up sizes (S, M, L, XL, XXL, etc). Once these 3 drop-downs are selected, it will use vlookup to pull the rest of the data and fill out the rest of the fields on the sheet.
Right now, I can't figure out how to create the drop-down lists to filter out the values and only show the correct items. I don't want to see multiple rows of the same item. I thought I had the first drop down correct, but I can't get it to show anything.
I've tried googling this, but I can't figure out what I am doing wrong. I would appreciate any help I can get.
Thanks!
I am working on trying to make a form where the user can select the drop-down and select the item (shirt, jacket, etc), then the next drop-down will pull up the various options (color, etc), and the next drop-down will pull up sizes (S, M, L, XL, XXL, etc). Once these 3 drop-downs are selected, it will use vlookup to pull the rest of the data and fill out the rest of the fields on the sheet.
Right now, I can't figure out how to create the drop-down lists to filter out the values and only show the correct items. I don't want to see multiple rows of the same item. I thought I had the first drop down correct, but I can't get it to show anything.
I've tried googling this, but I can't figure out what I am doing wrong. I would appreciate any help I can get.
Thanks!
Book2 | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A | B | C | D | E | F | G | H | I | J | K | |||
1 | ITEM | COLOR | SIZE | ||||||||||
2 | ITEM | COLOR | SIZE | PRICE | MANUFACTURE | ||||||||
3 | T-SHIRT | BLUE | SMALL | ||||||||||
4 | T-SHIRT | BLUE | MEDIUM | ||||||||||
5 | T-SHIRT | BLUE | LARGE | ||||||||||
6 | T-SHIRT | BLUE | X-LARGE | ||||||||||
7 | PRICE | MANUFACTURE | T-SHIRT | BLUE | XX-LARGE | ||||||||
8 | T-SHIRT | RED | SMALL | ||||||||||
9 | T-SHIRT | RED | MEDIUM | ||||||||||
10 | T-SHIRT | RED | LARGE | ||||||||||
11 | T-SHIRT | RED | X-LARGE | ||||||||||
12 | T-SHIRT | RED | XX-LARGE | ||||||||||
13 | BUTTON SHIRT | BLUE | SMALL | ||||||||||
14 | BUTTON SHIRT | BLUE | MEDIUM | ||||||||||
15 | BUTTON SHIRT | BLUE | LARGE | ||||||||||
16 | BUTTON SHIRT | BLUE | X-LARGE | ||||||||||
17 | BUTTON SHIRT | BLUE | XX-LARGE | ||||||||||
18 | BUTTON SHIRT | RED | SMALL | ||||||||||
19 | BUTTON SHIRT | RED | MEDIUM | ||||||||||
20 | BUTTON SHIRT | RED | LARGE | ||||||||||
21 | BUTTON SHIRT | RED | X-LARGE | ||||||||||
22 | BUTTON SHIRT | RED | XX-LARGE | ||||||||||
23 | JACKET | BLACK | SMALL | ||||||||||
24 | JACKET | BLACK | MEDIUM | ||||||||||
25 | JACKET | BLACK | LARGE | ||||||||||
26 | JACKET | BLACK | X-LARGE | ||||||||||
27 | JACKET | BLACK | XX-LARGE | ||||||||||
Sheet1 |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
A2 | List | =UNIQUE(ITEM,FALSE,FALSE) |
B2 | List | =INDIRECT($A$2) |
C2 | List | =INDIRECT($B$2) |