Forum Discussion
PowerVisualBI
Helper I
4 years agoShow Value in Chart from DAX
Hello all I have a problem with DAX I have slicer company and month for 3 companies. But there is a need to add one option in the slicer company which is "Consol". When I press the console, then al...
Anonymous
4 years agoNot applicable
Hi PowerVisualBI ,
Please consider to create a measure like below to filter the chart:
Measure = IF(selectedvalue('table'[company]) in values('slicer'[company]),1,0)
Add this measure to visual filter and set value = 1
Best Regards,
Jay
PowerVisualBI
Helper I
4 years agoWhere did the 'Slicer'[company] come from sir Anonymous