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
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
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.