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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Using one slicer on 2 different date columns

Hi,

 

I'm pulling data from only one table for my report. I have 2 date columns - effective date and expired date. I need to use only one slicer in my report so that I can apply filter on both effective date and expired date as below.

 

policy eff dt <= slicer date

and 

expired dt > slicer date

 

Please let me know if this can be achieved?

Thanks in advance.

1 ACCEPTED SOLUTION
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

1. Create a date table and add the date column in slicer.

 

date = CALENDARAUTO()

2. Create a measure and make the table visual filtered by the measure.

 

Measure = 
VAR _exp =
    MAX ( Table1[expired date] )
VAR _eff =
    MAX ( Table1[effective date] )
VAR _sele =
    SELECTEDVALUE ( 'date'[Date] )
RETURN
    IF ( _eff <= _sele && _exp > _sele, 1, 0 )

Capture.PNG

 

Please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

1. Create a date table and add the date column in slicer.

 

date = CALENDARAUTO()

2. Create a measure and make the table visual filtered by the measure.

 

Measure = 
VAR _exp =
    MAX ( Table1[expired date] )
VAR _eff =
    MAX ( Table1[effective date] )
VAR _sele =
    SELECTEDVALUE ( 'date'[Date] )
RETURN
    IF ( _eff <= _sele && _exp > _sele, 1, 0 )

Capture.PNG

 

Please check the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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