0
0
Excelspreadsheet~8 mins

Advanced filtering criteria in Excel - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - Advanced filtering criteria
Dashboard Goal

Find and analyze sales records that meet multiple complex conditions, such as sales above a certain amount, specific regions, and product categories, to help focus on key business areas.

Sample Data
Order IDProductCategoryRegionSalesOrder Date
1001Desk ChairFurnitureEast2502024-01-15
1002Pen SetOffice SuppliesWest452024-02-10
1003MonitorTechnologyEast3002024-03-05
1004NotebookOffice SuppliesSouth602024-01-20
1005Desk LampFurnitureWest1202024-02-25
1006KeyboardTechnologyEast802024-03-15
1007Paper ClipsOffice SuppliesNorth152024-01-30
Dashboard Components
  • KPI Card: Total Sales (Filtered)
    Formula: =SUMPRODUCT((D2:D8="East")*(C2:C8="Technology")*(E2:E8>100), E2:E8)
    Explanation: Adds sales where Region is East, Category is Technology, and Sales are greater than 100.
    Result: 300
  • Filtered Sales Table
    Formula (helper column F): =AND(D2="East", C2="Technology", E2>100)
    Filter applied on column F = TRUE to show only matching rows.
    Shows rows with Order ID 1003 only.
  • Count of Filtered Orders
    Formula: =COUNTIFS(D2:D8,"East", C2:C8,"Technology", E2:E8,">100")
    Result: 1
  • Average Sales of Filtered Orders
    Formula: =AVERAGEIFS(E2:E8, D2:D8, "East", C2:C8, "Technology", E2:E8, ">100")
    Result: 300
Dashboard Layout
+----------------------+-----------------------+
| Total Sales (Filtered) | Count of Filtered Orders |
+----------------------+-----------------------+
| Average Sales (Filtered)                      |
+----------------------------------------------+
| Filtered Sales Table (shows matching rows)   |
|                                              |
+----------------------------------------------+
Interactivity

User can change filter criteria by editing the formulas or helper column conditions, for example changing Region or Category or Sales threshold. When criteria change, the KPI cards and filtered table update automatically to reflect the new filtered data.

Self Check

If you add a filter to show only Region = West and Sales > 100, which components update and what are their new values?

  • Total Sales (Filtered): Updates to 120 (Desk Lamp)
  • Count of Filtered Orders: Updates to 1
  • Average Sales of Filtered Orders: Updates to 120
  • Filtered Sales Table: Shows only the row with Order ID 1005
Key Result
Dashboard shows sales filtered by multiple conditions like region, category, and sales amount with KPIs and filtered table.