leegend
1 TopicMeasure in value field to ignore the legend of chart
Hi everybody, I have a problem with writing dax measure, that ignores legend field, so the data series is not repeated for every item by legend. I want my chart to show the rating (that is a simple average) and then to show category limits for ratings (ok, not ok, great) which are stored in separate table. I have two data types, so the ratings limits are diferent for each data type, but that is just a small problem. If i use this chart, it looks fine, beceause it has secondary axis: But in visuals with only one axis, the ratings limits measures start to interact with the legend, and creates the ratings limits line (area) for every single value by the legend. For the ratings limits I am using this measures: Not ok = LOOKUPVALUE(rating_limits[upper limit],rating_limits[Category],"Not Ok",rating_limits[Source ID],SELECTEDVALUE(Src_list[Source ID])) This one creates the dulicates of the data series. Then I've tried another measure with filters and ALL() but that one measure didn't work too. CALCULATE( AVERAGE(rating_limits[upper limit), FILTER(rating_limits, reating_limits[Category]="Not ok" && Rating_limits[Source ID]=SELECTEDVALUE(Src_list[Source ID]) ), ALLEXCEPT(Data,Data[Source ID]), ) The relations are just like this: Link for the example is here: https://drive.google.com/file/d/1zuRRJ42O_C4TSo6a73YDGOxhZGqfyhMK/view?usp=sharing Please help, I would be pleased 🙂 Thanks1.6KViews0likes2Comments