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
yios
Helper I
Helper I

Dax equivalent to sql select case when within group by

Hello, I am trying to write with DAX the following SQL query 

I know that case when equivalent is switch statement and group by is summarize but i can't get it work.

 

select
video,
sum(case when type=1 then 1 else 0 end) as upvote,
sum(case when type=0 then 1 else 0 end) as downvote
from votes
group by video


Does anybody know how to do it?

1 ACCEPTED SOLUTION
Ani1991
Resolver III
Resolver III

Hi @yios 

 

You can try using something this below,

Click on New Table under Modelling tab and use the below expression. Replace the column names according to the one present in your dataset.

 

Table = SUMMARIZE(Dummy,Dummy[Project ID],"Video",Dummy[Project ID],
"Upvote",SWITCH(MAX(Dummy[Planned hours]),10,1,0),
"Downvote",SWITCH(MAX(Dummy[Planned hours]), 20,2,0)
)
image.png

A new dataset would be created. Drag those columns in a table visual. You will get the output as the adjoining image.

 

 

 

Thanks,

Ani

View solution in original post

2 REPLIES 2
Ani1991
Resolver III
Resolver III

Hi @yios 

 

You can try using something this below,

Click on New Table under Modelling tab and use the below expression. Replace the column names according to the one present in your dataset.

 

Table = SUMMARIZE(Dummy,Dummy[Project ID],"Video",Dummy[Project ID],
"Upvote",SWITCH(MAX(Dummy[Planned hours]),10,1,0),
"Downvote",SWITCH(MAX(Dummy[Planned hours]), 20,2,0)
)
image.png

A new dataset would be created. Drag those columns in a table visual. You will get the output as the adjoining image.

 

 

 

Thanks,

Ani

Thanks @Ani1991 

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.