0
0
Power BIbi_tool~8 mins

Custom visuals from marketplace in Power BI - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - Custom visuals from marketplace
Business Question

How can we use custom visuals from the Power BI marketplace to better understand sales trends and customer satisfaction?

Sample Data
Month Region Sales Customer Satisfaction
JanNorth12085
JanSouth15080
FebNorth13088
FebSouth17082
MarNorth14090
MarSouth16085
Dashboard Components
  • KPI Card - Total Sales: Shows total sales across all months and regions.
    Formula: Total Sales = SUM(SalesData[Sales])
    Result: 870
  • Custom Visual - Radial Gauge (from Marketplace): Displays average customer satisfaction.
    Formula: Avg Satisfaction = AVERAGE(SalesData[Customer Satisfaction])
    Result: 85
  • Custom Visual - Heatmap (from Marketplace): Shows sales by Month and Region with color intensity.
    Data: Sales values mapped by Month (rows) and Region (columns)
  • Table: Detailed data table showing Month, Region, Sales, and Customer Satisfaction.
Dashboard Layout
+----------------------+-----------------------+
|      KPI Card        |   Radial Gauge Visual  |
|   (Total Sales)      | (Avg Customer Sat.)   |
+----------------------+-----------------------+
|                      Heatmap Visual               |
|                (Sales by Month & Region)          |
+---------------------------------------------------+
|                      Data Table                    |
|          (Month, Region, Sales, Satisfaction)     |
+---------------------------------------------------+
    
Interactivity

The dashboard includes a slicer for Region. When a region is selected:

  • The Total Sales KPI updates to show sales only for that region.
  • The Radial Gauge updates to show average customer satisfaction for the selected region.
  • The Heatmap filters to show sales only for the selected region across months.
  • The Data Table shows only rows for the selected region.

Self Check

Add a filter for Region = North. Which components update and what are their new values?

  • Total Sales KPI: Updates to 390 (120 + 130 + 140)
  • Radial Gauge: Updates to average satisfaction 87.7 ((85 + 88 + 90) / 3)
  • Heatmap: Shows sales for North region only by month.
  • Data Table: Shows only rows where Region is North.
Key Result
Dashboard showing total sales, average customer satisfaction, and sales heatmap using custom visuals from the Power BI marketplace.