Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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.
Hope it resolves your issue? Did I answer your question? Mark my post as a solution! Appreciate your Kudos, Press the thumbs up button!! Linkedin Profile |
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
82 | |
81 | |
52 | |
39 | |
35 |
User | Count |
---|---|
94 | |
79 | |
51 | |
47 | |
47 |