Which component in Power BI Report Builder is used to create a table that displays data in rows and columns?
Think about the component that organizes data simply in rows and columns without grouping.
The Table component displays data in a simple grid of rows and columns, perfect for detailed data display.
Given a dataset with sales data, what is the output of this DAX measure in Report Builder?
Sales Amount = SUM(Sales[Amount])
Assuming the Sales table has Amount values: 100, 200, 300.
Sales Amount = SUM(Sales[Amount])
SUM adds all values in the column.
The SUM function adds all Amount values: 100 + 200 + 300 = 600.
In Report Builder, which visualization is best to show sales trends over several months?
Think about which chart type shows continuous data changes over time.
Line charts are ideal for showing trends over time because they connect data points in a continuous line.
What error will this expression cause in Report Builder?
=Sum(Fields!Sales.Value + Fields!Cost.Value)
Check how Sum function expects its argument.
The Sum function expects a single numeric field, not an expression adding two fields inside it.
You have two tables: Customers and Products, linked by a Sales table with many-to-many relationships. Which approach best models this in Report Builder to avoid double counting?
Think about how to handle many-to-many relationships properly in BI models.
A bridge table helps manage many-to-many relationships by linking Customers and Products without duplication.