cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Shaglok
Frequent Visitor

antoher newbie question

Hello!! 

 

I have a question, which for sure will be very easy. We send a survey with every sale, and I need to extract the satisfaction of these surveys.

 

In Qlik we have it with the formula

count({$<survey_response = {'5', '4'}>} ID_sell / count({$<survey_response = {'1', '2', '3', '4', '5'}>} ID_sell)

 

How can I do it in DAX?

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

MEASURE = 
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

View solution in original post

3 REPLIES 3
SpartaBI
Community Champion
Community Champion

MEASURE = 
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)


2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

Thanl you!! That worked.

SpartaBI
Community Champion
Community Champion

@Shaglok my pleasure 🙂
Check out my showcase report - got some high level stuff there. Sure you will find there a lot of cool ideas. Please give it a thumbs up over there if you liked it 🙂
https://community.powerbi.com/t5/Data-Stories-Gallery/SpartaBI-Feat-Contoso-100K/td-p/2449543

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.

Top Solution Authors
Top Kudoed Authors