0
0
Power BIbi_tool~10 mins

Why choosing the right visual matters in Power BI - Test Your Understanding

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

Complete the code to create a bar chart visual in Power BI.

Power BI
BarChart = [1](SalesData, 'Product', 'SalesAmount')
Drag options to blanks, or click blank then click option'
ABarChart
BBarChartVisual
Cbar_chart
DBarChartVisualize
Attempts:
3 left
💡 Hint
Common Mistakes
Using incorrect visual names like 'bar_chart' or 'BarChartVisualize'.
2fill in blank
medium

Complete the DAX measure to calculate total sales for the visual.

Power BI
TotalSales = SUM([1][SalesAmount])
Drag options to blanks, or click blank then click option'
ASalesAmount
BSales
CSalesTable
DSalesData
Attempts:
3 left
💡 Hint
Common Mistakes
Using the column name instead of the table name inside SUM.
3fill in blank
hard

Fix the error in the DAX formula to calculate average sales per product.

Power BI
AvgSales = AVERAGE([1][SalesAmount])
Drag options to blanks, or click blank then click option'
ASalesData
BSales
CSalesTable
DSalesAmount
Attempts:
3 left
💡 Hint
Common Mistakes
Using the column name alone without the table name.
Using incorrect table names.
4fill in blank
hard

Fill both blanks to filter sales data for the year 2023 and calculate total sales.

Power BI
TotalSales2023 = CALCULATE(SUM(SalesData[SalesAmount]), SalesData[Year] [1] [2] 2023)
Drag options to blanks, or click blank then click option'
A=
B>
C==
D<
Attempts:
3 left
💡 Hint
Common Mistakes
Using '==' instead of '=' for equality.
Using wrong comparison operators like '<' or '>'.
5fill in blank
hard

Fill all three blanks to create a measure that calculates total sales for products with sales greater than 1000.

Power BI
HighSales = CALCULATE(SUM([1][SalesAmount]), FILTER([2], [3][SalesAmount] > 1000))
Drag options to blanks, or click blank then click option'
ASalesData
BSales
Attempts:
3 left
💡 Hint
Common Mistakes
Using different table names in the same formula.
Forgetting to use FILTER for row context.