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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Ben81
Helper I
Helper I

Override slicer for specific visual

Hi,

 

I have a card visual with a measure value which can be changed by a slicer between previous day, week to date, month to date etc.. and I have other visuals that show the same measure but in different ways.

What I want is for my card visual to default to week to date if a user selects day from the slicer but the other visuals to work as normal. 

Is this possible without having to create duplicate measures just for the card?

 

Thanks,

 

Ben

1 REPLY 1
amitchandak
Super User
Super User

@Ben81 , Try measures like

 

WTD based on the selected date or today

 

WTD =
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _min = _max -WEEKDAY(_max,2)+1
return
CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max))

 

 

WTD of full data

WTD =
var _max = if(isfiltered('Date'),MAX( 'Date'[Date]) , today())
var _min = _max -WEEKDAY(_max,2)+1
return
 if(isfiltered('Date'), CALCULATE([net] ,DATESBETWEEN('Date'[Date],_min,_max)), [net])

 

where [net] is my measure

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.