Dashboard Mode - LEFT, RIGHT, MID extraction
Dashboard Goal
Extract parts of product codes to analyze product categories, regions, and item numbers separately.
Extract parts of product codes to analyze product categories, regions, and item numbers separately.
| Product Code | Full Code Description |
|---|---|
| US12345A | United States, Item 12345, Type A |
| EU98765B | Europe, Item 98765, Type B |
| AS54321C | Asia, Item 54321, Type C |
| AF67890D | Africa, Item 67890, Type D |
| SA11223E | South America, Item 11223, Type E |
=LEFT(A2,2)=MID(A2,3,5)=RIGHT(A2,1)+----------------+----------------+----------------+------------------+ | Region Code | Item Number | Product Type | Summary Table | | (LEFT formula) | (MID formula) | (RIGHT formula)| (All extracted) | +----------------+----------------+----------------+------------------+
User can filter product codes by region code using a dropdown filter. When a region is selected, all KPI cards and the summary table update to show only product codes from that region.
If you add a filter to show only product codes starting with 'EU', which components update and what values do they show?