March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
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.
@Anonymous 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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |