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?
Think about which variable is independent and which is dependent.
Number of Customers is usually the independent variable (X-axis), and Sales Amount depends on it (Y-axis). This helps see how sales change with customer count.
You want to add a measure to your scatter plot that shows Average Sales per Customer. Which DAX formula correctly calculates this?
Think about total sales divided by total customers.
DIVIDE(SUM(Sales[Sales Amount]), SUM(Sales[Number of Customers])) safely calculates average sales per customer.
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?
Think about how tables connect in Power BI.
Creating a relationship between Sales and Regions tables on RegionID allows using RegionName as legend properly.
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?
Avg Sales per Customer = SUM(Sales[Sales Amount]) / COUNT(Sales[CustomerID])
Think about counting unique customers.
COUNT counts all rows, including duplicates. DISTINCTCOUNT counts unique customers, which is needed for average per customer.
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?
Think about sales per customer in each cluster.
Cluster 1 has low customers and sales, likely small stores. Cluster 2 has many customers but medium sales, so sales per customer is low. Cluster 3 has medium customers but high sales, so sales per customer is high.