Forum Discussion
aziffarhan
1 year agoRegular Visitor
Visualization (Buttons and Slicers)
Hi everyone! I'm currently working on an interactive Power BI dashboard and I’ve run into a challenge. I want to include slicers and buttons that allow users to filter by Year, Quarter, and Month. ...
- 1 year ago
You could just create another conditional formatting measure but this time should be applied to the callout value of the buttons.
Slicer Highlight Color = IF ( SELECTEDVALUE ( MonthsOnly[Month Short] ) IN VALUES ( Dates[Month Short] ), "white" --#ffffff for hexadecimal )
danextian
1 year agoSuper User
You could just create another conditional formatting measure but this time should be applied to the callout value of the buttons.
Slicer Highlight Color =
IF (
SELECTEDVALUE ( MonthsOnly[Month Short] ) IN VALUES ( Dates[Month Short] ),
"white" --#ffffff for hexadecimal
)aziffarhan
1 year agoRegular Visitor
It still doesn't seem to work. Whenever I tried to select 2 quarters at the same time, the font becomes black again (in month). Really appreciate it if you could help me with these.