0
0
Power BIbi_tool~20 mins

Scatter plots in Power BI - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Scatter Plot Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Choosing the correct axis for a scatter plot

You want to create a scatter plot in Power BI to analyze sales performance. You have two numeric columns: Sales Amount and Number of Customers. Which should you place on the X-axis and which on the Y-axis for best practice?

AX-axis: Sales Amount, Y-axis: Number of Customers
BX-axis: Sales Amount, Y-axis: Sales Amount
CX-axis: Number of Customers, Y-axis: Sales Amount
DX-axis: Number of Customers, Y-axis: Number of Customers
Attempts:
2 left
💡 Hint

Think about which variable is independent and which is dependent.

dax_lod_result
intermediate
2:00remaining
Calculate average sales per customer for scatter plot

You want to add a measure to your scatter plot that shows Average Sales per Customer. Which DAX formula correctly calculates this?

AAverage Sales per Customer = SUM(Sales[Sales Amount]) * SUM(Sales[Number of Customers])
BAverage Sales per Customer = AVERAGE(Sales[Sales Amount]) / AVERAGE(Sales[Number of Customers])
CAverage Sales per Customer = SUM(Sales[Sales Amount]) - SUM(Sales[Number of Customers])
DAverage Sales per Customer = DIVIDE(SUM(Sales[Sales Amount]), SUM(Sales[Number of Customers]))
Attempts:
2 left
💡 Hint

Think about total sales divided by total customers.

data_modeling
advanced
2:00remaining
Modeling data for scatter plot with categories

You want to create a scatter plot showing sales amount vs number of customers, colored by Region. Your data model has a Sales table and a separate Regions table. What is the best way to model this for the scatter plot?

ACreate a relationship between Sales[RegionID] and Regions[RegionID], then use Regions[RegionName] as legend in scatter plot.
BMerge Sales and Regions tables into one table before creating the scatter plot.
CUse Sales[RegionID] directly as legend without any relationship.
DCreate a relationship between Sales[Sales Amount] and Regions[RegionName].
Attempts:
2 left
💡 Hint

Think about how tables connect in Power BI.

🔧 Formula Fix
advanced
2:00remaining
Identify the error in scatter plot measure

You wrote this DAX measure to calculate average sales per customer for a scatter plot:

Avg Sales per Customer = SUM(Sales[Sales Amount]) / COUNT(Sales[CustomerID])

But the scatter plot shows incorrect values. What is the likely problem?

Power BI
Avg Sales per Customer = SUM(Sales[Sales Amount]) / COUNT(Sales[CustomerID])
ASUM cannot be divided by COUNT; use AVERAGE instead.
BCOUNT counts all rows including duplicates, so it undercounts customers; use DISTINCTCOUNT instead.
CThe measure should use MAX instead of SUM for Sales Amount.
DThe formula is correct; the problem is with the scatter plot settings.
Attempts:
2 left
💡 Hint

Think about counting unique customers.

🧠 Conceptual
expert
3:00remaining
Interpreting scatter plot clusters in sales data

You created a scatter plot with Sales Amount on Y-axis and Number of Customers on X-axis. You notice three distinct clusters of points:

  • Cluster 1: Low customers, low sales
  • Cluster 2: High customers, medium sales
  • Cluster 3: Medium customers, high sales

What is the best interpretation of these clusters?

ACluster 1 represents small stores, Cluster 2 represents stores with many customers but low sales per customer, Cluster 3 represents stores with fewer customers but high sales per customer.
BCluster 1 represents stores with high sales efficiency, Cluster 2 represents stores with low customer count, Cluster 3 represents stores with average sales and customers.
CClusters show random data with no meaningful pattern.
DCluster 1 and 3 represent the same type of stores, Cluster 2 is an outlier.
Attempts:
2 left
💡 Hint

Think about sales per customer in each cluster.