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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
kurtazzopardi
Frequent Visitor

Date slicer to filter to 2 date columns

Hi, 

 

I would like to use a single slicer to filter 2 columns in the same table. Assuming the table below:

 

Contract Code; Inception Date; Maturity Date

ABC; 2019-10-03; 

DEF; 2019-10-05; 2020-05-05;

GHI; 2019-10-03; 2019-10-07


From the above i would like to extract the "active" contracts as at a month-end date. 

Assuming from the slicer i choose 2019-10-31 (October Month End). As at end of October ABC and DEF are still active (where Maturity Date is NULL OR Maturity Date > @MonthEnd). So i would like to these 2 as a result.

GHI is no longer active since it matured before end Oct 2019 so this should be excluded. 

 

Your input is appreciated. 


Thanks

 

1 ACCEPTED SOLUTION
v-xicai
Community Support
Community Support

Hi @kurtazzopardi ,

 

You can create calendar table , put 'Calendar'[Date] into slicer visual to filter the date, then create measure like DAX below.

 

Calendar =CALENDARAUTO() .
 
CumulativeIDs =
var d=SELECTEDVALUE('Calendar'[Date])
return COUNTROWS(FILTER(Table1,Table1[Maturity Date]=BLANK()||(d<=Table1[Maturity Date]&&d>=Table1[Inception Date])))

 

Best Regards,

Amy

 

Community Support Team _ Amy

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

1 REPLY 1
v-xicai
Community Support
Community Support

Hi @kurtazzopardi ,

 

You can create calendar table , put 'Calendar'[Date] into slicer visual to filter the date, then create measure like DAX below.

 

Calendar =CALENDARAUTO() .
 
CumulativeIDs =
var d=SELECTEDVALUE('Calendar'[Date])
return COUNTROWS(FILTER(Table1,Table1[Maturity Date]=BLANK()||(d<=Table1[Maturity Date]&&d>=Table1[Inception Date])))

 

Best Regards,

Amy

 

Community Support Team _ Amy

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

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.

Top Solution Authors