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
I'm calculating the response rate for this survey question by using Count (Distinct) for each survey ID. The counts (n-sizes) are correct but when I tried to show values as Percent of Column Total, the individual response rates are incorrect and thus don't add to 100%. I do have filters on, but when I double checked with the raw data, I can confirm the n-sizes are accurate.
Should I create a calculated measure to get an accurate number?
Thanks in advance.
Solved! Go to Solution.
Hey @rgu101 ,
why don't you just calculate it with DAX?
Percentage =
VAR _DistinctCount = [Your count measure]
VAR _Total = CALCULATE ( [Your count measure], ALL ( myTable[Column with agree disagree] ) )
RETURN
DIVIDE ( _DistinctCount, _Total )
Then format as percent and you should be good to go.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Hey @rgu101 ,
why don't you just calculate it with DAX?
Percentage =
VAR _DistinctCount = [Your count measure]
VAR _Total = CALCULATE ( [Your count measure], ALL ( myTable[Column with agree disagree] ) )
RETURN
DIVIDE ( _DistinctCount, _Total )
Then format as percent and you should be good to go.
If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
Best regards
Denis
Blog: WhatTheFact.bi
Follow me: twitter.com/DenSelimovic
Response Rate =
VAR _DCount =
DISTINCTCOUNT('Raw Data'[Visit ID])
VAR _QTotal =
CALCULATE(
DISTINCTCOUNT('Raw Data'[Visit ID]),
ALLEXCEPT('Raw Data',
'Raw Data'[QuestionText],
'Raw Data'[Date],
DateTable)
)
RETURN
DIVIDE(_DCount,_QTotal)
Thank you for the help. Settled with a calculated measure because i couldn't find any solutions for why the column total was incorrect.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
125 | |
85 | |
69 | |
54 | |
45 |
User | Count |
---|---|
204 | |
105 | |
99 | |
64 | |
54 |