0
0
Power BIbi_tool~10 mins

Naming conventions in Power BI - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a measure with a proper name.

Power BI
Total Sales = SUM([1][SalesAmount])
Drag options to blanks, or click blank then click option'
A1Sales
Bsales
CSales
DTotal-Sales
Attempts:
3 left
💡 Hint
Common Mistakes
Starting names with numbers
Using special characters like '-'
Using lowercase when uppercase is standard for table names
2fill in blank
medium

Complete the code to follow naming conventions for calculated columns.

Power BI
Profit Margin = DIVIDE([1][Profit], [1][SalesAmount])
Drag options to blanks, or click blank then click option'
Asales
BSales-Data
C1Sales
DSales
Attempts:
3 left
💡 Hint
Common Mistakes
Using lowercase table names
Starting table names with numbers
Including special characters in names
3fill in blank
hard

Fix the error in the measure name to follow naming conventions.

Power BI
[1] = SUM(Sales[Units])
Drag options to blanks, or click blank then click option'
ASales_Units
BUnits
CSales
DSalesData
Attempts:
3 left
💡 Hint
Common Mistakes
Using hyphens in measure names
Starting names with numbers
Using spaces in names
4fill in blank
hard

Fill both blanks to create a properly named calculated table and column.

Power BI
NewTable = SELECTCOLUMNS([1], "[2]", [SalesAmount])
Drag options to blanks, or click blank then click option'
ASales
Bsales
CTotalSales
DTotal-Sales
Attempts:
3 left
💡 Hint
Common Mistakes
Using lowercase table names
Using hyphens in column names
Using spaces in names
5fill in blank
hard

Fill all three blanks to define a measure with proper naming conventions and syntax.

Power BI
[1] = CALCULATE(SUM([2][Revenue]), FILTER([2], [2][Region] = "West"))
Drag options to blanks, or click blank then click option'
ATotalRevenue
BSales
CSalesData
Dtotal_revenue
Attempts:
3 left
💡 Hint
Common Mistakes
Using lowercase measure names
Using inconsistent table names
Using underscores in measure names