0
0
Power BIbi_tool~8 mins

Naming conventions in Power BI - Dashboard Guide

Choose your learning style9 modes available
Dashboard Mode - Naming conventions
Dashboard Goal

Help users understand and apply clear naming rules for measures, columns, and tables in Power BI to keep reports easy to read and maintain.

Sample Data
OrderIDCustomerNameOrderDateSalesAmountRegion
1001Anna Smith2024-01-10250North
1002John Doe2024-01-15450South
1003Mary Johnson2024-02-05300East
1004James Brown2024-02-20150West
1005Linda Davis2024-03-01500North
Dashboard Components
  • KPI Card: TotalSales
    Formula: TotalSales = SUM('Sales'[SalesAmount])
    Shows total sales amount from all orders.
  • KPI Card: AvgSalesPerOrder
    Formula: AvgSalesPerOrder = AVERAGE('Sales'[SalesAmount])
    Shows average sales amount per order.
  • Table: Sales by Region
    Columns: Region, TotalSales
    Formula for TotalSales: TotalSales = SUM('Sales'[SalesAmount])
    Grouped by Region.
  • Bar Chart: Sales by Region
    Visualizes total sales for each region.
  • Text Box: Naming Convention Rules
    Explains naming rules:
    • Use PascalCase for measure names (e.g., TotalSales)
    • Use descriptive names for columns and tables
    • Prefix measures with their calculation type (e.g., Total, Avg)
    • Avoid spaces and special characters
Dashboard Layout
+----------------------+----------------------+
|      TotalSales      |   AvgSalesPerOrder   |
|       (KPI Card)     |       (KPI Card)     |
+----------------------+----------------------+
|                                              |
|          Sales by Region (Bar Chart)          |
|                                              |
+----------------------+----------------------+
|           Sales by Region (Table)             |
+----------------------+----------------------+
|           Naming Convention Rules (Text)     |
+----------------------------------------------+
Interactivity

Adding a slicer for Region filters the bar chart and the sales by region table. The KPI cards update to show totals and averages only for the selected region(s). The naming convention text box remains static as it explains rules.

Self Check

If you add a filter for Region = North, which components update?

  • The TotalSales and AvgSalesPerOrder KPI cards update to show sales only for the North region.
  • The Sales by Region bar chart and table update to show data only for the North region.
  • The Naming Convention Rules text box does not change.
Key Result
A Power BI dashboard demonstrating clear naming conventions with KPIs, charts, and tables using sample sales data.