0
0
Power BIbi_tool~20 mins

Why data modeling connects related tables in Power BI - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Data Modeling Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Why do we connect related tables in data modeling?

In Power BI, why is it important to create relationships between related tables?

ATo enable filtering and aggregation across tables for accurate reports
BTo make tables load faster in Power BI Desktop
CTo prevent users from editing data in the tables
DTo reduce the file size of the Power BI report
Attempts:
2 left
💡 Hint

Think about how data from different tables can work together in reports.

dax_lod_result
intermediate
2:00remaining
DAX measure with related table filter

Given two tables: Sales and Products connected by ProductID, what is the result of this DAX measure?

SalesAmountFiltered = CALCULATE(SUM(Sales[Amount]), Products[Category] = "Beverages")

If Sales table has amounts: 100, 200, 300 for products in categories Beverages, Snacks, Beverages respectively, what is the measure value?

A600
B400
C300
D100
Attempts:
2 left
💡 Hint

Only sum amounts where product category is Beverages.

visualization
advanced
2:00remaining
Choose the correct visualization for related tables

You have two related tables: Customers and Orders. You want to show total orders per customer with a clear connection between them. Which visualization best shows this?

AA line chart showing order amounts over time without customer info
BA pie chart showing total orders by order date
CA table showing customers without order totals
DA bar chart showing total orders by customer name
Attempts:
2 left
💡 Hint

Think about showing totals grouped by customer.

🔧 Formula Fix
advanced
2:00remaining
Why does this report show incorrect totals?

You created a report summing sales amounts, but totals are too high. You have two tables: Sales and Customers. You forgot to create a relationship between them. What is the likely cause?

AWithout a relationship, Power BI sums all sales repeatedly for each customer, inflating totals
BPower BI automatically creates relationships, so this should not happen
CThe sales amounts are stored as text, causing wrong sums
DThe report filter is set to exclude customers, causing totals to be low
Attempts:
2 left
💡 Hint

Think about how missing relationships affect data aggregation.

🎯 Scenario
expert
3:00remaining
Designing a data model for sales and products

You have two tables: Sales with columns (SaleID, ProductID, Quantity, Amount) and Products with (ProductID, ProductName, Category). You want to analyze total sales by product category. What is the best data modeling approach?

AMerge both tables into one to avoid relationships
BCreate a many-to-many relationship between Sales and Products on ProductID
CCreate a one-to-many relationship from Products (one) to Sales (many) on ProductID
DCreate a relationship from Sales (one) to Products (many) on ProductID
Attempts:
2 left
💡 Hint

Think about which table has unique products and which has multiple sales per product.