Forum Discussion
Power BI Scatter Graph help !!!!!!!!!!!!!!
- Anonymous1 year ago
Hi Bigshow ,
In PowerBI it is not allowed to have duplicate values in the Scatter chart, you can only show the corresponding view if the values are non-duplicates.
But I think you can create data close to these duplicate values to fulfill your needs.
Then I create two measures.
JitteredBehavior = MAX('Table'[Behavior]) + RAND() * 0.1 - 0.05JitteredAchievement = MAX('Table'[Achievement]) + RAND() * 0.1 - 0.05Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Bigshow ,
In PowerBI it is not allowed to have duplicate values in the Scatter chart, you can only show the corresponding view if the values are non-duplicates.
But I think you can create data close to these duplicate values to fulfill your needs.
Then I create two measures.
JitteredBehavior = MAX('Table'[Behavior]) + RAND() * 0.1 - 0.05JitteredAchievement = MAX('Table'[Achievement]) + RAND() * 0.1 - 0.05
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.