Forum Discussion
saranyasaran
9 years agoRegular Visitor
line chart on filter selection
in line chart is it possible to get lines according to multiple country selection, for now its showing only average but I want to display for multiple country. Eg. Initially one line per chart will b...
PowerDAX
9 years agoResolver III
You should be able to simply add the country to the legend of the chart.
saranyasaran
9 years agoRegular Visitor
Hi,
Thanks for the reply. If i the country to the legend of the chart we get multiple lines, is there any option to get an average line initially and get multiple line based on filter selection.
- PowerDAX9 years agoResolver III
you could do something clever with the DAX like checking if the country field is filtered (i.e. IF( NOT( ISFILTERED( 'Table'[Country])), xxxxx) and pass an ALL( 'Table'[Country]) filter if it was not filtered.