This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I am using matrix to display our survey results.
As you can see from the snapshot below, I am able to summarize results by applications where our survey responders provided the feedback.
Now, I want to show the survey feeback against the total number of app users (this is to mainly determine the percentage of survey respondents against the actual application users) . Please advise how to achieve it
Here is the table structure for the reference.
thanks
Create a new measure
_pcnt = Count(table[respondent id])/Average(table[total Users])
This should give you the expected output.
If it doesn't, Please share details aboy below fields like DAX statement, Summarization level.
Is there a website where I can share my powerBI file for your review and feedback.
Thanks
https://drive.google.com/file/d/1-xq_y63djhMOpmtRgtoD1UN_4mhI0D9S/view?usp=sharing
Here is the file
Thanks
HI @talhaparvaiz,
I'd like to suggest you write a measure with summary function and add raw categories, then you can add the second aggregate function to calculate with the raw result:
Measure =
SUMX (
SUMMARIZE (
Sheet1,
[Application_Name],
[Attribute],
[Business Division],
[Value],
"rate", DISTINCTCOUNT ( Sheet1[Respondent_ID] ),
"total", VALUE ( MIN ( Sheet1[Total_Users] ) )
),
[Rate] / [total]
)
Regards,
Xiaoxin Sheng
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 28 | |
| 28 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |