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
tomperro
Helper III
Helper III

Help with Filtering Multiple Date Columns Using Start and End Date

First time poster.

I have a table that has multiple start and end dates that I need to filter based on a date slicer.

If I select 01/2022 as my slicer, I need to filter each start and end date as follows...

 

if ( End Date>=01/01/2022 Or (End Date Is Null AND Start Date]<=01/01/2022)

 

Expected Results

DepartmentDivisionImplementation ZoneCategory IDTarget
TransportationNew YorkNYP115
ElectricalPhiladelphiaPHL212
     

 

MonthlyTargetTable

DepartmentDepartment Start DateDepartment End DateDivisionDivision Start DateDivision End DateImplementation ZoneImplementation Zone Start DateImplementation Zone End DateCategory IDTarget
Transportation01/01/2022 New York01/01/2022 NYP01/01/2022 110
Transportation01/01/2022 New York01/01/2022 NYP01/01/2022 15
Electrical01/01/202203/01/2022Philadelphia01/01/2022 PHL01/01/2022 212
Mechanical02/01/2022 Philadelphia01/01/2022 PHL01/01/2022 35
           

 

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

Hi @tomperro ,

According to your description, here's my solution.

Not sure if you have a date table as slicer, if not, create one.

vkalyjmsft_0-1658489271614.png

Then create a measure.

Check =
VAR _S =
    SELECTEDVALUE ( 'Date'[Date] )
RETURN
    IF (
        IF (
            MAX ( 'MonthlyTarget'[Department End Date] ) <> BLANK (),
            MAX ( 'MonthlyTarget'[Department End Date] ) >= _S,
            MAX ( 'MonthlyTarget'[Department Start Date] ) <= _S
        )
            && IF (
                MAX ( 'MonthlyTarget'[Division End Date] ) <> BLANK (),
                MAX ( 'MonthlyTarget'[Division End Date] ) >= _S,
                MAX ( 'MonthlyTarget'[Division Start Date] ) <= _S
            )
            && IF (
                MAX ( 'MonthlyTarget'[Implementation Zone End Date] ) <> BLANK (),
                MAX ( 'MonthlyTarget'[Implementation Zone End Date] ) >= _S,
                MAX ( 'MonthlyTarget'[Implementation Zone Start Date] ) <= _S
            ),
        1,
        0
    )

Put the measure in the visual and let it's value to 1. Get the result.

vkalyjmsft_1-1658489522268.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

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
v-yanjiang-msft
Community Support
Community Support

Hi @tomperro ,

According to your description, here's my solution.

Not sure if you have a date table as slicer, if not, create one.

vkalyjmsft_0-1658489271614.png

Then create a measure.

Check =
VAR _S =
    SELECTEDVALUE ( 'Date'[Date] )
RETURN
    IF (
        IF (
            MAX ( 'MonthlyTarget'[Department End Date] ) <> BLANK (),
            MAX ( 'MonthlyTarget'[Department End Date] ) >= _S,
            MAX ( 'MonthlyTarget'[Department Start Date] ) <= _S
        )
            && IF (
                MAX ( 'MonthlyTarget'[Division End Date] ) <> BLANK (),
                MAX ( 'MonthlyTarget'[Division End Date] ) >= _S,
                MAX ( 'MonthlyTarget'[Division Start Date] ) <= _S
            )
            && IF (
                MAX ( 'MonthlyTarget'[Implementation Zone End Date] ) <> BLANK (),
                MAX ( 'MonthlyTarget'[Implementation Zone End Date] ) >= _S,
                MAX ( 'MonthlyTarget'[Implementation Zone Start Date] ) <= _S
            ),
        1,
        0
    )

Put the measure in the visual and let it's value to 1. Get the result.

vkalyjmsft_1-1658489522268.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

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

amitchandak
Super User
Super User

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.