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?
Solved! Go to Solution.
MEASURE =
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)
MEASURE =
DIVIDE(
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {4,5}),
CALCULATE(COUNTROWS('Table'), 'Table'[survey_response] IN {1,2,3,4,5})
)
Thanl you!! That worked.
@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
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
100 | |
81 | |
46 | |
34 | |
29 |
User | Count |
---|---|
137 | |
94 | |
92 | |
47 | |
43 |