Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
I have a table that has the bellow fields:
Project Name
Start Date
Completion Date
I want to have a visual table that has those three fields, this is quite easy to do.
But I also want to filter that table by both the Start Date and the Completion Date. I want to be able to select a date range and the table will show me all the projects that either the Start or the Completion Date are within the date range I selected.
I tried creating a datetable and relating both the Start Date and the Completion Date with that datetable but powerbi allows only one of the relationships to be active.
How can I achieve what I want?
Hi,
You could create the create the date table but without a relationship at all.
That way you could adjust the filter context of the measure accordingly.
For example to get a count of all projects of which at least one day crosses your date range filtered on the data table:
ProjectsCrossingDates :=
CALCULATE (
COUNTROWS ( 'ProjectTable' ),
FILTER (
'ProjectTable',
[Start Date] <= MAX ( DateTable[Date] )
&& [Completion Date] >= MIN ( DateTable[Date] )
)
)Note that having no active relationship to date requires that all measures requring time intelligence need to manually filtered in the way in which you expect them to react to the users date selections.
Hope this helps.
Thomas
1. For this case u have to duplicate the table and create two relationship one for start Date and another one for completion date.
2. one more way is using Userelationship function in calculations .
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 27 | |
| 23 | |
| 18 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 44 | |
| 42 | |
| 37 | |
| 37 |