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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
tomperro
Helper V
Helper V

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

@tomperro , refer if one these two blogs can help

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...

https://community.powerbi.com/t5/Community-Blog/How-to-divide-distribute-values-between-start-date-o...

 

Or the attached file can help

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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.