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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Brianoreilly
Helper II
Helper II

If Statement using Calculated Measure and Date Sliceer

Hi Folks,

 

I need to build 2 dynamic measures which will allow me to assess if an employee was/is working within a time period. 

The time period in questions, being dictated by the Min & Max Date of a slicer. 

 

I have two tables. 

A Timecard table with the Dataset and a Date Table for the slicer. 

I do not want to relate. 

 

On the Timecard table there are employee records with columns of start and end date. 

If Finish Date is blank, it means they are still employees. 

 

I need a nested if measuse using the Slicer Max And Min Dates. Once I get one example of the "IF" pulling the max and min values from the slicer into the measure, I should be able to work out all the scenarios. 

 

I basically need 2 measures, call "Start Date" and "End Date", that works out for instance:

If the Employee start date is before the Slicer Min Date and the Employee End Date is blank.

Then the Start Date is the Slicer Min and the End Date is the Slicer Max Date. 

 

Any help would be appreciated. 

 

Start Date - Finish Date.JPG

 

 

 

 

 

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

Hi @Brianoreilly,

 

We can create the measures as below to achieve your goal.

 

Start Date =
VAR mindate =
    MIN ( 'date'[Date] )
RETURN
    IF (
        ISBLANK ( MAX ( 'dataset'[Employee End Date] ) )
            && MAX ( 'dataset'[Employee Start Date] ) < mindate,
        mindate,
        MAX ( 'dataset'[Employee Start Date] )
    )
End Date = 
VAR maxdate =
    MAX ( 'date'[Date] )
VAR mindate =
    MIN ( 'date'[Date] )
RETURN
    IF (
        ISBLANK ( MAX ( 'dataset'[Employee End Date] ) )
            && mindate >= MAX ( 'dataset'[Employee Start Date] ),
        maxdate
    )

Capture.PNG

 

Also please find the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

1 REPLY 1
v-frfei-msft
Community Support
Community Support

Hi @Brianoreilly,

 

We can create the measures as below to achieve your goal.

 

Start Date =
VAR mindate =
    MIN ( 'date'[Date] )
RETURN
    IF (
        ISBLANK ( MAX ( 'dataset'[Employee End Date] ) )
            && MAX ( 'dataset'[Employee Start Date] ) < mindate,
        mindate,
        MAX ( 'dataset'[Employee Start Date] )
    )
End Date = 
VAR maxdate =
    MAX ( 'date'[Date] )
VAR mindate =
    MIN ( 'date'[Date] )
RETURN
    IF (
        ISBLANK ( MAX ( 'dataset'[Employee End Date] ) )
            && mindate >= MAX ( 'dataset'[Employee Start Date] ),
        maxdate
    )

Capture.PNG

 

Also please find the pbix as attached.

 

Regards,

Frank

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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