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
MIrlam
Frequent Visitor

How to factor year in to my expression

Hi all

 

I'm hoping someone can help with this. My dax expression is:

 

LOS Days (AdmissionMonth) = IF(MONTH('Admissions and Discharges'[DateAdmitted])>=MONTH('Admissions and Discharges'[DCDateForOBD]),DATEDIFF('Admissions and Discharges'[DateAdmitted],'Admissions and Discharges'[DCDateForOBD],DAY),DATEDIFF('Admissions and Discharges'[DateAdmitted],ENDOFMONTH('Admissions and Discharges'[DateAdmitted].[Date]),DAY))
 
which basically counts the length of time someone has stayed if they are admitted one month and discharged the next. This works fine except for January as it currently does not consider the year - is there a way i can easily edit this to make that work?
 
thanks
2 ACCEPTED SOLUTIONS
AlexisOlson
Super User
Super User

There might be a way to make this quite a bit simpler.

 

Is this logic correct?

Column =
VAR StartDate = 'Admissions and Discharges'[DateAdmitted]
VAR EndDate =
    MIN ( 'Admissions and Discharges'[DCDateForOBD], EOMONTH ( StartDate, 0 ) )
RETURN
    DATEDIFF ( StartDate, EndDate, DAY )



View solution in original post

Hi @MIrlam 

 

Try this:

Column = 
IF(
    YEAR( 'Admissions and Discharges'[DateAdmitted] )
        & MONTH( 'Admissions and Discharges'[DateAdmitted] )
            >= YEAR( 'Admissions and Discharges'[DCDateForOBD] )
        & MONTH( 'Admissions and Discharges'[DCDateForOBD] ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        'Admissions and Discharges'[DCDateForOBD],
        DAY
    ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        ENDOFMONTH( 'Admissions and Discharges'[DateAdmitted].[Date] ),
        DAY
    )
)

 

Output:

VahidDM_0-1640214182113.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

View solution in original post

6 REPLIES 6
AlexisOlson
Super User
Super User

There might be a way to make this quite a bit simpler.

 

Is this logic correct?

Column =
VAR StartDate = 'Admissions and Discharges'[DateAdmitted]
VAR EndDate =
    MIN ( 'Admissions and Discharges'[DCDateForOBD], EOMONTH ( StartDate, 0 ) )
RETURN
    DATEDIFF ( StartDate, EndDate, DAY )



That is brilliant, thank you!

VahidDM
Super User
Super User

Hi @MIrlam 

 

Try this:

LOS Days (AdmissionMonth) =
IF(
    YEAR( 'Admissions and Discharges'[DateAdmitted] )
        && MONTH( 'Admissions and Discharges'[DateAdmitted] )
            >= YEAR( 'Admissions and Discharges'[DCDateForOBD] )
        && MONTH( 'Admissions and Discharges'[DCDateForOBD] ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        'Admissions and Discharges'[DCDateForOBD],
        DAY
    ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        ENDOFMONTH( 'Admissions and Discharges'[DateAdmitted].[Date] ),
        DAY
    )
)

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Thank you, that has helped with the Jan / Dec overlap as highlighted below. However I now have an issue where the datediff isn't calculating as I think it should? As far as I can see the dax is correct but i get this return when the months for dateadmitted and d/cdateforOBD are the same

Column = IF( YEAR( 'Admissions and Discharges'[DateAdmitted] ) && MONTH( 'Admissions and Discharges'[DateAdmitted] ) >= YEAR( 'Admissions and Discharges'[DCDateForOBD] ) && MONTH( 'Admissions and Discharges'[DCDateForOBD] ), DATEDIFF( 'Admissions and Discharges'[DateAdmitted], 'Admissions and Discharges'[DCDateForOBD], DAY ), DATEDIFF( 'Admissions and Discharges'[DateAdmitted], ENDOFMONTH( 'Admissions and Discharges'[DateAdmitted].[Date] ), DAY ) ) 

MIrlam_0-1640182273292.png

Thanks

Hi @MIrlam 

 

Try this:

Column = 
IF(
    YEAR( 'Admissions and Discharges'[DateAdmitted] )
        & MONTH( 'Admissions and Discharges'[DateAdmitted] )
            >= YEAR( 'Admissions and Discharges'[DCDateForOBD] )
        & MONTH( 'Admissions and Discharges'[DCDateForOBD] ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        'Admissions and Discharges'[DCDateForOBD],
        DAY
    ),
    DATEDIFF(
        'Admissions and Discharges'[DateAdmitted],
        ENDOFMONTH( 'Admissions and Discharges'[DateAdmitted].[Date] ),
        DAY
    )
)

 

Output:

VahidDM_0-1640214182113.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

perfect, works now thanks!

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.

Top Solution Authors