cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Rebekahjhanson
New Member

Datediff Months: start date cannot be greater than the end date

Hi, I've thoroughly reviewed the other posts on this topic and none of them have a solution that works for my situation.  I need to calculate the months difference between two dates, and in some cases, the start date is greater than the end date.  I cannot just subtract the dates because I need the Months, not the Days.  I've tried to modify the following solutions from previous posts but I get the same error each time:

 

1) 

DateDiffMeasure :=
IF (
    [StartDateField] > [EndDateField],
    0 - DATEDIFF ( [EndDateField], [StartDateField], Month ),
    DATEDIFF ( [StartDateField], [EndDateField], Month )
)

2)

Days =
SWITCH (
    TRUE (),
    [StartDateField] > [EndDateField], -1 * DATEDIFF ( [EndDateField], [StartDateField], Month ),
    [EndDateField] > 'Table'[Target], DATEDIFF ( [StartDateField], [EndDateField], Month ),
    0
)

 

I get the same Datediff error (start date cannot be greater than the end date) regardless of what option I try from previous posts on this topic. 

 

1 REPLY 1
v-haibl-msft
Microsoft
Microsoft

@Rebekahjhanson

 

I tried your DAX formula in Feb 2017 version of Power BI Desktop and did not get the Datediff error as below. Could you please provide your PBIX file to me so that I can have a check on it?

 

Datediff Months start date cannot be greater than the end date_1.jpg 

 

Best Regards,

Herbert

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors