Forum Discussion
comparing total group vs broken down catergory
- 9 years ago
According to your description, you want to make your lines ingore subgroup filtering. Right?
In your scenario, is the sub group on Legend? If so, you can create a measure and limit the filter context into entire table.
Measure = CALCULATE(SUM(Table[Value]),ALL(Table))
Or if you need to keep the subgroup field filtering and ingore all other fields filtering, you can use ALLEXCEPT()
Measure = CALCULATE(SUM(Table[Value]),ALLEXCEPT(Table,Table[SubGroup]))
You can enable secondary axis in combo chart.
However, currently there's no Area+Line chart in Power BI Desktop, you may try other combo chart like Column + Line chart.
Regards,
According to your description, you want to make your lines ingore subgroup filtering. Right?
In your scenario, is the sub group on Legend? If so, you can create a measure and limit the filter context into entire table.
Measure = CALCULATE(SUM(Table[Value]),ALL(Table))
Or if you need to keep the subgroup field filtering and ingore all other fields filtering, you can use ALLEXCEPT()
Measure = CALCULATE(SUM(Table[Value]),ALLEXCEPT(Table,Table[SubGroup]))
You can enable secondary axis in combo chart.
However, currently there's no Area+Line chart in Power BI Desktop, you may try other combo chart like Column + Line chart.
Regards,
- Anonymous1 year agoNot applicable
Hi I need you help, because I am facing to a similar problem.
I am trying to create a line chart with
x axis (datetime column). --> A
y axis (average of a column). --> B
secondary y axis (an already measure created). --> C
Then I would like to include legend which only affects y axis (B). This legend is another column belongs to the same table
Then when I am trying to create my line chart and I complete A, B and C, pbix cannot allow me to include legend. Maybe its because should I change some of the A,B, and C?
When I try to create the line chart with no legend, the result is legitime, but it is impossible fullying legend field.
Please could you help me? It is a similar questions to the ones you answer before.