Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I'm trying to create a measure that gives me the percentage within groups. The following formula is working like a charm until I start slicing or cross-filtering:
Measure = DIVIDE(COUNT(data[Respondent]),CALCULATE(DISTINCTCOUNT(data[Respondent]),ALL(data)))
What I would like is a function that only ignores one column in my data when filtering, i.e. only the column which contains the categories I'm trying to create a percentage of. I want kind of a %GT effect but one that amounts to more than 100% (therefore, I don't use the build-in quick calc at the graph level) since the respondents can have selected several categories.
Any suggestions?
Replying to this old thread because it came up in a search for me. DAX now has a REMOVEFILTERS function which I believe accomplishes what this is asking about (and certainly works in the case I was dealing with).
Thank you, was looking for exactly this.
Hi @carinat
have you tried:
Measure =
DIVIDE(
COUNT(data[Respondent]),
CALCULATE(
DISTINCTCOUNT(data[Respondent]),
ALL(data[category])
)
)HTH,
Frank
Hi Frank,
Thanks for your suggestion but that actually just makes it worse.
What I have look like the following (anonymized):
And adding the column within ALL gives me:
In DAX, there's no function which is the opposite of ALLEXCEPT(). You have to use All(Column1, Column2,...) to include all other column as filter context expect that column you want to ingore. For more details, please see: ALL Function (DAX).
Regards,
can you please post a screenshot of your data table?
Frank
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.