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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Janewhite
Frequent Visitor

Case when

Hi all please how would I write this below statement in DAX, been trying to convert this SQL query but I keep getting an error 

 

SQL Script 

 

COALESCE(SUM(CASE WHEN ((CASE WHEN X THEN 1 ELSE 0 END
) = 0) AND (y is not null) THEN datediff(minute, x, x)* 1.0 / 60 ELSE NULL END), 0)

 

Any Recommendation will be much appreciated 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Janewhite , Correct the condition X<>  0

 

 

Sumx(Table, if( if([X] <>0, 1,0)=0 && not(isblank([Y])) , datediff([d1], [d2],minute)/60,blank()))

 

This should be a measure

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Janewhite , Correct the condition X<>  0

 

 

Sumx(Table, if( if([X] <>0, 1,0)=0 && not(isblank([Y])) , datediff([d1], [d2],minute)/60,blank()))

 

This should be a measure

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.