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
mork
Helper V
Helper V

How to double filter using two date?

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?

2 REPLIES 2
Framet
Resolver II
Resolver II

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

Baskar
Resident Rockstar
Resident Rockstar

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 . 

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.