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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
SMaz
Frequent Visitor

Filter a table with dynamic dates

Hi everyone,

 

I have two tables : 

1. Classic Calendar table (date)

2. Project table (Project_code, Signature_date, Admin_launch_date, ...)

 

I want to create a report where I can :

1. Know how many projects have passed each milestone (signature, admininistrative launch, ...) => card with the measure

Nb_projects_signed_on_period = CALCULATE(COUNTA(PROJECTS[Project_code]), FILTER(PROJECTS, PROJECTS[SIGNATURE_DATE] >= MIN('CALENDAR'[DATE]) && PROJECTS[SIGNATURE_DATE] <= MAX('CALENDAR'[DATE])))
 

2. Visualize the projects that have passed each milestone => tables that needs to be filtered

SMaz_0-1729689892578.png

My issue is that I can't find how to filter my tables to get the correct projects that passed each milestone. 

Note : There are no relationships between the Calendar table and the Project table.

 

Thanks for your help !

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @SMaz ,

Based on the description, you can change the calendar date range in the slicer visual to filter the table data.

Try using the following DAX formula to create a new measure.

Measure = 
var _date = SELECTEDVALUE('Project Table'[Signature_date])
RETURN
IF(_date >= MIN('Table'[Date]) && _date <= MAX('Table'[Date]), 1, 0)

Then, set the show item is 1 in Filters pane.

vjiewumsft_0-1729734464822.png

vjiewumsft_1-1729734506641.png

Best Regards,

Wisdom Wu

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

2 REPLIES 2
SMaz
Frequent Visitor

Thanks a lot !

Anonymous
Not applicable

Hi @SMaz ,

Based on the description, you can change the calendar date range in the slicer visual to filter the table data.

Try using the following DAX formula to create a new measure.

Measure = 
var _date = SELECTEDVALUE('Project Table'[Signature_date])
RETURN
IF(_date >= MIN('Table'[Date]) && _date <= MAX('Table'[Date]), 1, 0)

Then, set the show item is 1 in Filters pane.

vjiewumsft_0-1729734464822.png

vjiewumsft_1-1729734506641.png

Best Regards,

Wisdom Wu

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

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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