Forum Discussion
Legend in Bar Chart
Hi,
Can anyone help with the legends in the bar chart. If nothing is selected in the slicer then it should pick type1 as the legend and if we select anyone or more then it should show type2 as legend.
- Anonymous4 years ago
HI hiren89vora,
For your scenario, I'd like to suggest you write a measure formula with an if statement and isfiltered function to check the selections.
After these steps, you can use this measure on the value field to replace the raw field to achieve your requirement.
ISFILTERED, ISCROSSFILTERED – DAX Guide - SQLBI
If you are confused about the coding formula, please share some dummy data to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
2 Replies
- amitchandak
Super User
hiren89vora , You Have Create mesure like
=
var _is = calculate(isfiltered(table[type]), allselected())
return
If(_is , [Measure], calculate([Measure], filter(Table, Table[Type] = "type 1" ) ) )
- AnonymousNot applicable
HI hiren89vora,
For your scenario, I'd like to suggest you write a measure formula with an if statement and isfiltered function to check the selections.
After these steps, you can use this measure on the value field to replace the raw field to achieve your requirement.
ISFILTERED, ISCROSSFILTERED – DAX Guide - SQLBI
If you are confused about the coding formula, please share some dummy data to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng