Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello Community -
TLDR; I am looking for a DAX measure that will calculate the total distinct count of companies in a column, while ignoring certain slicers on the page.
I am creating a dynamic text title that says something like "Company X ranks 13 out of 331 companies in Premium Written during the year." I am looking for a DAX formula that can help me count the total number of companies (331) for the year selected. The page has a Year slicer and a Company Name slicer. Therefore, the measure would need to ignore the Company Name slicer, but evaluate the Year selected.
So far, I have this, but it gives me the total count for all years, regardless of the Year selected:
Solved! Go to Solution.
@CMajka8 , use all, allselected, removefilters
PC Counts = CALCULATE( DISTINCTCOUNT('Data FACT'[PC]), all( 'Data FACT'))
or
PC Counts = CALCULATE( DISTINCTCOUNT('Data FACT'[PC]), allselecetd( 'Data FACT'))
https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak
I think I've solved it - thanks for you help.
@CMajka8 , use all, allselected, removefilters
PC Counts = CALCULATE( DISTINCTCOUNT('Data FACT'[PC]), all( 'Data FACT'))
or
PC Counts = CALCULATE( DISTINCTCOUNT('Data FACT'[PC]), allselecetd( 'Data FACT'))
https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak
Thank you. However, that appears to only give me a count of 1, based on the selction made in the Company Name slicer. I want to ignore that selection and get a total count of companies.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
15 | |
14 | |
13 | |
9 |
User | Count |
---|---|
60 | |
23 | |
22 | |
19 | |
13 |