Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Amyrie_m
Regular Visitor

Show/ Hide Date slicer

Hello everyone!

I have a dropdown list called Date Range (left side) I'm looking for a way to show or hide the date_range (right side).

For example, If I select "Sunset time", the orange date_range is not displayed. Otherwise, if I select "Night time", the black date_range is not displayed. Is there a way to achieve this? Thank you!

Amyrie_m_0-1730387271731.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Amyrie_m , hello PijushRoy, thank you for your prompt reply!

As far as I know, there is no property that directly control the visibility of visuals.

 

As a workaroud, we can create measures that format the button Text colour to a transparent #FFFFFF00 to indirectly hide it.

Make Transparent = 
IF(
      
         SELECTEDVALUE('SpecialDates'[Period])="Sunset time",
         "#FFFFFF00", -- returns transparent if condition is True
         "orange")
         
      
Make Transparent2 = 
         IF(
         SELECTEDVALUE('SpecialDates'[Period])="Night time",
          "#FFFFFF00", -- returns transparent if condition is True
         "blank")

Then use the relevant measures to format the style of visuals:

vyajiewanmsft_0-1730451664981.pngvyajiewanmsft_1-1730451679079.png

Result for your reference:

vyajiewanmsft_3-1730451796908.png

 

vyajiewanmsft_2-1730451785202.png

 

 

 

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
PijushRoy
Super User
Super User

Hi @Amyrie_m 

Can you please share more details about the right-side function? how it is working.
If you share a sample PBIX file link (google drive/noteone/sharepoint/box), it will be super helpful to analyze to provide a solution quickly




Did I answer your question? Mark my post as a solution!
Appreciate your Like/Kudos

Proud to be a Super User!





Thanks for your response! Here is my pbix file, please take your time to consider it.

Anonymous
Not applicable

Hi @Amyrie_m , hello PijushRoy, thank you for your prompt reply!

As far as I know, there is no property that directly control the visibility of visuals.

 

As a workaroud, we can create measures that format the button Text colour to a transparent #FFFFFF00 to indirectly hide it.

Make Transparent = 
IF(
      
         SELECTEDVALUE('SpecialDates'[Period])="Sunset time",
         "#FFFFFF00", -- returns transparent if condition is True
         "orange")
         
      
Make Transparent2 = 
         IF(
         SELECTEDVALUE('SpecialDates'[Period])="Night time",
          "#FFFFFF00", -- returns transparent if condition is True
         "blank")

Then use the relevant measures to format the style of visuals:

vyajiewanmsft_0-1730451664981.pngvyajiewanmsft_1-1730451679079.png

Result for your reference:

vyajiewanmsft_3-1730451796908.png

 

vyajiewanmsft_2-1730451785202.png

 

 

 

Best regards,

Joyce

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors