Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello All,
I need some help with respect to a Scatter Plot. I have got a dataset as follows -
| Date | Employee | Sales | Overhead |
| 06/21/2024 | E1 | 25 | 25 |
| 06/21/2024 | E2 | 25 | 25 |
| 06/21/2024 | E3 | 10 | 20 |
| 06/22/2024 | E1 | 25 | 25 |
| 06/22/2024 | E2 | 25 | 25 |
| 06/22/2024 | E3 | 20 | 10 |
| 06/23/2024 | E1 | 20 | 30 |
| 06/23/2024 | E2 | 30 | 40 |
| 06/23/2024 | E3 | 20 | 50 |
I have created a Baseline Percentage Measure as follows -
Baseline percentage on Y axis and Sum of Sales on X axis.
I now need to show the items above Baseline Average i.e 44.4% across three days as separate color and items below baseline average as separate color but not able to do so. Could you please help me solve the issue ? Also I need to ensure that the chart works perfectly fine based on date slicer selection shown below -
@SC30GSWNBA
You can conditionally format the marker colors in scatter plot
Conditional formatting window:
if you keep the thresholds dyanmic then you can create a sonditional formatting measure and apply the same.
If I understnad correctly then I think your baseline_percentage measure is incorrect. You can use this pattern
Baseline_Percentage =
Var __Sales = sum('Baseline_data'[Sales])
Var __TotalSales = calculate(sum('Baseline_data'[Sales]), removefilters('Baseline_data'[Employee]))
Var __OverHead = sum('Baseline_data'[Overhead]
Var Result = Divide(sum('Baseline_data'[Sales]), __TotalSales) + __OverHead
return Result
Need Power BI consultation, hire me on UpWork .
If the post helps please give a thumbs up
If it solves your issue, please accept it as the solution to help the other members find it more quickly.
Tharun
Thank you for the solution @tharunkumarRTK, but no the Baseline calculation is correct and I do not want to change my view for scatter plot. It should strictly be Baseline Percentage vs Sales. I want to show the employees who are below baseline percentage.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 |