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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
UCHKANA
New Member

DATEDIFF function with Filter

Hello all, 

I wanted to calulcate the date difference but with the filter. 

I wrote the following but it doesn't work. 

MEASURE = IF((max(OpportunityBase[StatusCode])=100000023), (DATEDIFF(TODAY(), FIRSTDATE('OpportunityBase'[Close By]), DAY)))

 Basicallly, I want to calculate the datediff between 'Close By' and Today only if Statuscode of the Close by equals 100000023. 

How can I solve this? Please help me 🙏

2 ACCEPTED SOLUTIONS
edhans
Community Champion
Community Champion

What are you doing with FIRSTDATE()? That is a time intelligence function.

 

This measure will functionally work, but I am not sure it will give you the results are are wanting. You should not use time intelligence functions to do date math. If you are using it intentionally knowing that it invokes context transition, that is fine, otherwise, use MIN() instead, or post back with more info.

Some Measure =
VAR varStartDate =
    TODAY()
VAR varEndDate =
    FIRSTDATE( 'OpportunityBase'[Close By] )
RETURN
    IF(
        MAX( OpportunityBase[StatusCode] ) = 100000023,
        DATEDIFF( varStartDate, varEndDate, DAY )
    )

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

Daryl-Lynch-Bzy
Community Champion
Community Champion

@UCHKANA 

 

Try the following to see if it works:


Measure Name = 
VAR _max = MAX( OpportunityBase[StatusCode] )
VAR _date = FIRSTNONBLANK( 'OpportunityBase'[Close By] , 1)
RETURN
IF ( _max = 100000023 ,
DATEDIFF( TODAY(), _date , DAY ) ,
BLANK()
)

 

View solution in original post

4 REPLIES 4
Daryl-Lynch-Bzy
Community Champion
Community Champion

@UCHKANA 

 

Try the following to see if it works:


Measure Name = 
VAR _max = MAX( OpportunityBase[StatusCode] )
VAR _date = FIRSTNONBLANK( 'OpportunityBase'[Close By] , 1)
RETURN
IF ( _max = 100000023 ,
DATEDIFF( TODAY(), _date , DAY ) ,
BLANK()
)

 

Omggg. It totally worked! Thank you soo much! ❤️

edhans
Community Champion
Community Champion

What are you doing with FIRSTDATE()? That is a time intelligence function.

 

This measure will functionally work, but I am not sure it will give you the results are are wanting. You should not use time intelligence functions to do date math. If you are using it intentionally knowing that it invokes context transition, that is fine, otherwise, use MIN() instead, or post back with more info.

Some Measure =
VAR varStartDate =
    TODAY()
VAR varEndDate =
    FIRSTDATE( 'OpportunityBase'[Close By] )
RETURN
    IF(
        MAX( OpportunityBase[StatusCode] ) = 100000023,
        DATEDIFF( varStartDate, varEndDate, DAY )
    )

 



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

And it worked too! Thank you so much! I appreciate it! ❤️

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.