DarkoDeign2
Board Regular
- Joined
- Jun 20, 2023
- Messages
- 76
- Office Version
- 365
- Platform
- Windows
Hi,
I have two worksheets. On the first sheet I have a dropdown list in cell C15. You can select either "Ongoing", "Sales", "Sold Out" or "Closed".
If I select "Ongoing" in C15, I want to have the data from E7:E100 to be shown in the dropdown list in cell C16.
If I select "Sales" in C15 I want to have the data from F7:F100 to be shown in the dropdown list in cell C16, and so on.
I have a formula in E7, F7, G7, H7. I suspect that this is what is causing the issue, but I am not sure.
I will also put my data sheet from where the data is pulled, just for your reference.
This is my data sheet with my table of data:
I have two worksheets. On the first sheet I have a dropdown list in cell C15. You can select either "Ongoing", "Sales", "Sold Out" or "Closed".
If I select "Ongoing" in C15, I want to have the data from E7:E100 to be shown in the dropdown list in cell C16.
If I select "Sales" in C15 I want to have the data from F7:F100 to be shown in the dropdown list in cell C16, and so on.
I have a formula in E7, F7, G7, H7. I suspect that this is what is causing the issue, but I am not sure.
I will also put my data sheet from where the data is pulled, just for your reference.
Book1 | |||||||||
---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | |||
2 | Local | ||||||||
3 | |||||||||
4 | Company name: | Celestial Imports | Ongoing | Sales | Sold out | Closed | |||
5 | |||||||||
6 | |||||||||
7 | 7654321 | 4321098 | |||||||
8 | 5678901 | ||||||||
9 | |||||||||
10 | |||||||||
11 | |||||||||
12 | |||||||||
13 | |||||||||
14 | |||||||||
15 | Ongoing | ||||||||
16 | |||||||||
Adress & Overview |
Cell Formulas | ||
---|---|---|
Range | Formula | |
E2 | E2 | =IFERROR(INDEX(Table1[Global Local],MATCH('Adress & Overview'!$C$4,Table1[Supplier],0)),"") |
E7:E8,F7:H7 | E7 | =IF($C$4="","",FILTER(Table1[Numbers],(Table1[Global Local]=$E$2)*(Table1[Supplier]=$C$4)*(Table1[Status]=E4),"")) |
Dynamic array formulas. |
Named Ranges | ||
---|---|---|
Name | Refers To | Cells |
Table7 | =Table1 | E7:H7 |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
E2:J2 | Cell Value | contains "Local" | text | NO |
E2:J2 | Cell Value | contains "Global" | text | NO |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
C15 | List | Ongoing; Sales; Sold out; Closed |
C16 | List | =INDIRECT(ADDRESS(C15;4;1)) |
C4 | List | Celestial Imports; Nexus Supplies; Aurora Trading Co.; Starlight Enterprises; Spectrum Suppliers; Empyrean Distributors; Quantum Merchandisers |
This is my data sheet with my table of data:
Book1 | |||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
C | F | V | AG | ||||||||||||||||||||||||||||||
2 | 8456234 | Global | Starlight Enterprises | Ongoing | |||||||||||||||||||||||||||||
3 | 9876543 | Global | Starlight Enterprises | Ongoing | |||||||||||||||||||||||||||||
4 | 1234567 | Local | Spectrum Suppliers | Sales | |||||||||||||||||||||||||||||
5 | 8765432 | Local | Aurora Trading Co. | Sold Out | |||||||||||||||||||||||||||||
6 | 2345678 | Global | Empyrean Distributors | Closed | |||||||||||||||||||||||||||||
7 | 7654321 | Local | Celestial Imports | Ongoing | |||||||||||||||||||||||||||||
8 | 3456789 | Local | Spectrum Suppliers | Ongoing | |||||||||||||||||||||||||||||
9 | 6543210 | Global | Empyrean Distributors | Closed | |||||||||||||||||||||||||||||
10 | 4567890 | Local | Nexus Supplies | Ongoing | |||||||||||||||||||||||||||||
11 | 5432109 | Global | Starlight Enterprises | Sold Out | |||||||||||||||||||||||||||||
12 | 9876543 | Local | Aurora Trading Co. | Closed | |||||||||||||||||||||||||||||
13 | 9871234 | Global | Starlight Enterprises | Ongoing | |||||||||||||||||||||||||||||
14 | 8765432 | Local | Nexus Supplies | Closed | |||||||||||||||||||||||||||||
15 | 3456789 | Local | Aurora Trading Co. | Closed | |||||||||||||||||||||||||||||
16 | 5678901 | Local | Celestial Imports | Ongoing | |||||||||||||||||||||||||||||
17 | 4321098 | Local | Celestial Imports | Sold Out | |||||||||||||||||||||||||||||
18 | 2109876 | Global | Quantum Merchandisers | Ongoing | |||||||||||||||||||||||||||||
19 | 6543210 | Local | Nexus Supplies | Sales | |||||||||||||||||||||||||||||
Tracking |