You are a Power BI report creator for a non-profit organization. You have a semantic model with a 'Donations' fact table (columns: 'DonationID', 'DonorID', 'Date', 'Amount', 'CampaignID') and a 'Donors' dimension table (columns: 'DonorID', 'DonorName', 'City', 'DonorType' (Individual/Corporate)). You need to create a report page that shows a scatter chart with 'Total Donation Amount' on the X-axis and 'Number of Donations' on the Y-axis, with each point representing a donor type. You also want to add a trend line to show the correlation. When you create the scatter chart, only one point appears (for all donors combined), instead of separate points for Individual and Corporate. What is the most likely cause?
To get separate points for each donor type, DonorType must be in the Legend or Details well.
Why this answer
In a scatter chart, you need to place the category field in the 'Legend' or 'Details' well to get separate points. If you put the field in the 'Values' well, it will be aggregated. Option A is correct.
Option B is incorrect because the measures are fine. Option C is incorrect because relationship is fine. Option D is incorrect because small multiples are for separate charts.