0
0
Power BIbi_tool~8 mins

Filtering rows in Power BI - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - Filtering rows
Business Question

Which sales transactions happened in the East region and had sales above $150?

Sample Data
Transaction IDRegionSalesProduct
1East100Widget A
2West200Widget B
3East250Widget C
4North300Widget A
5East180Widget B
6South90Widget C
7West220Widget A
Dashboard Components
  • KPI Card: Total Sales in East Region Above $150
    Formula:
    Total Sales Filtered = CALCULATE(SUM(Sales[Sales]), Sales[Region] = "East", Sales[Sales] > 150)
    Result: 430 (250 + 180)
  • Table: Filtered Transactions
    Shows only rows where Region = East and Sales > 150.
    Rows:
    Transaction ID 3, Region East, Sales 250, Product Widget C
    Transaction ID 5, Region East, Sales 180, Product Widget B
  • Bar Chart: Sales by Product (Filtered)
    Shows sales for products only in filtered rows.
    Data:
    Widget C: 250
    Widget B: 180
Dashboard Layout
+-----------------------------+-----------------------------+
|        KPI Card             |        Bar Chart             |
|  Total Sales Filtered       |  Sales by Product            |
+-----------------------------+-----------------------------+
|                         Filtered Transactions Table                 |
+-------------------------------------------------------------------+
Interactivity

The filter for Region = East and Sales > 150 is applied to all components.

When the filter changes, the KPI card, table, and bar chart update automatically to show only the filtered data.

Self Check

If you add a filter for Product = Widget B, which components update and what do they show?

  • KPI Card updates to show total sales for East region, sales > 150, and product Widget B: 180
  • Table updates to show only transaction ID 5
  • Bar Chart updates to show sales only for Widget B: 180
Key Result
Dashboard shows sales transactions filtered by East region and sales above $150 with total sales KPI, filtered table, and product sales bar chart.