
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
colour scatter points relative to reference lines?
Can any one show me how to colour the scatter points on this chart based on the following rules
1. If points are in top right quadrant then colour Green
2. If points are in bottom right then colour Red
3. If points are in bottom left then colour Orange
4. If points are in top left then colour blue
Bare in mind the reference points are set relative to the percentile so will move as and when new data is added.
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this color expression
=If(Sum(sales) >= Fractile(TOTAL Aggr(Sum(sales), CustomerGroupName), 0.5),
If(Sum(variance) > Fractile(TOTAL Aggr(Sum(variance), CustomerGroupName), 0.5), LightGreen(), LightRed()),
If(Sum(variance) > Fractile(TOTAL Aggr(Sum(variance), CustomerGroupName), 0.5), LightBlue(), LightMagenta()))
Used Light Magenta for Orange, but feel free to change all the colors based on your requirement

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this color expression
=If(Sum(sales) >= Fractile(TOTAL Aggr(Sum(sales), CustomerGroupName), 0.5),
If(Sum(variance) > Fractile(TOTAL Aggr(Sum(variance), CustomerGroupName), 0.5), LightGreen(), LightRed()),
If(Sum(variance) > Fractile(TOTAL Aggr(Sum(variance), CustomerGroupName), 0.5), LightBlue(), LightMagenta()))
Used Light Magenta for Orange, but feel free to change all the colors based on your requirement


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Would you mind showing me the expression for percentile calculate?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Robert,
Sunny formula looks ok.
In order to calculate percentile you need to use the Fractile(X,0.5) formula.
But if need be I cna provide the formula, let me know
