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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors