Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am trying to create a saturation metric that includes the total count of activity for all filters context except 1 divided by the total context. for example 500 for region, color, salesperson but 300 when I choose a color so over time I can see the stauration.
I tried using AllExcept and ALL but didn't have any success. I am a bit new to DAX so any help is appreciated.
Thanks,
Steve
Hi @SWhiteMKL ,
If the problem persists, please share sample data and expected output.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Best Regards,
Wearsky
Hello @SWhiteMKL ,
This formula calculates the count of activities by removing the color filter but respecting other filters like region, salesperson etc
CountWithoutColor =
CALCULATE(
COUNTROWS('YourTable'),ALL('YourTable'[Color]))
This will calculate the count without considering color but will still apply filters on region and salesperson
CountWithoutColor =
CALCULATE(
COUNTROWS('YourTable'),
ALLEXCEPT('YourTable', 'YourTable'[Region], 'YourTable'[Salesperson]))
If you find this helpful , please mark it as solution which will be helpful for others and Your Kudos/Likes 👍 are much appreciated!
Thank You
Dharmendar S
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
58 | |
36 | |
32 |
User | Count |
---|---|
90 | |
62 | |
61 | |
49 | |
45 |