Forum Discussion

Mat42's avatar
Mat42
Resolver I
5 years ago
Solved

Fixed Chart Comparator

This feels like it should be simple, but for the life of me I can't work out how to do it. Let's say I have a very simple table containing the following entries:   Name Sales Figures Yearly T...
  • lbendlin's avatar
    5 years ago

    You don't need to include the Company average in your data if you can also compute it on the fly. But if that is not possible then you can still make it work by using a separate measure.

     

    Sales Average := CALCULATE(sum(Performance[Sales Figures]),Performance[Name]="Company Average")

     

    Then add the Sales Figures value and the new measure to the Values well.