0
0
Power BIbi_tool~10 mins

Dashboards vs reports in Power BI - Interactive Practice

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

Complete the code to create a Power BI report page showing sales data.

Power BI
ReportPage = PowerBI.CreatePage([1])
Drag options to blanks, or click blank then click option'
AFilterPanel
BDashboardView
CSummaryTile
DSalesData
Attempts:
3 left
💡 Hint
Common Mistakes
Using dashboard or tile names instead of dataset name.
Confusing report page with dashboard view.
2fill in blank
medium

Complete the code to add a tile to a Power BI dashboard.

Power BI
Dashboard.AddTile([1])
Drag options to blanks, or click blank then click option'
ACreateReport()
BCreatePage()
CCreateTile()
DCreateFilter()
Attempts:
3 left
💡 Hint
Common Mistakes
Using CreatePage() which is for reports.
Using CreateReport() which is not a tile.
3fill in blank
hard

Fix the error in the code to filter a report visual by region.

Power BI
ReportVisual.Filter = [1]('Region', 'East')
Drag options to blanks, or click blank then click option'
AApplyFilter
BSetFilter
CAddFilter
DUseFilter
Attempts:
3 left
💡 Hint
Common Mistakes
Using ApplyFilter which is not a valid method.
Using AddFilter which is incorrect here.
4fill in blank
hard

Fill both blanks to create a dashboard tile from a report visual.

Power BI
DashboardTile = Dashboard.CreateTile([1], [2])
Drag options to blanks, or click blank then click option'
AReportVisual
BReportPage
CTileName
DDashboardName
Attempts:
3 left
💡 Hint
Common Mistakes
Using ReportPage instead of ReportVisual.
Using DashboardName instead of TileName.
5fill in blank
hard

Fill all three blanks to define a measure that sums sales and use it in a report visual.

Power BI
Measure = CALCULATE(SUM([1][[2]]))
ReportVisual.Value = [3]
Drag options to blanks, or click blank then click option'
ASalesData
BAmount
CMeasure
DRegion
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong table or column names.
Assigning the wrong variable to the visual.