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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Ykankam
Helper I
Helper I

DAX Formula

Hi All,

How do I write a DAX formula to calculate the date difference between two columns. The calculate column should be name OnTime and if true should be Y, if not, N.
The difference should be in minutes. There's a fix target value which is 30 minutes divided by 1440 (number of minutes in a day)

See the formula in excel below

=IF(ISBLANK(F5),"",IF(ABS((F5-E5)<(Targets!$E$4/1440)),"Y","N"))

 

 

 

 

Ykankam_1-1689694404012.png

 

1 ACCEPTED SOLUTION
v-yiruan-msft
Community Support
Community Support

Hi @Ykankam ,

You can create a calculated column as below to get it, please find the details in the attachment.

On-Time? =
VAR _target =
    CALCULATE (
        MAX ( 'Target'[Target] ),
        FILTER ( 'Target', 'Target'[Product] = 'Actual'[Product] )
    )
RETURN
    IF (
        ISBLANK ( 'Actual'[Actual] ),
        BLANK (),
        IF (
            DIVIDE ( ABS ( DATEDIFF ( 'Actual'[Plan], 'Actual'[Actual], MINUTE ) ), 1440 )
                < DIVIDE ( _target, 1440 ),
            "Y",
            "N"
        )
    )

vyiruanmsft_0-1689823384304.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yiruan-msft
Community Support
Community Support

Hi @Ykankam ,

You can create a calculated column as below to get it, please find the details in the attachment.

On-Time? =
VAR _target =
    CALCULATE (
        MAX ( 'Target'[Target] ),
        FILTER ( 'Target', 'Target'[Product] = 'Actual'[Product] )
    )
RETURN
    IF (
        ISBLANK ( 'Actual'[Actual] ),
        BLANK (),
        IF (
            DIVIDE ( ABS ( DATEDIFF ( 'Actual'[Plan], 'Actual'[Actual], MINUTE ) ), 1440 )
                < DIVIDE ( _target, 1440 ),
            "Y",
            "N"
        )
    )

vyiruanmsft_0-1689823384304.png

Best Regards

Community Support Team _ Rena
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.