Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi ,
I need some help with DAX measure. I have sample table with different categories with Error rate for Quarter 1 and Quarter 2. I want to find distinct count of Categories where the Error rate has increased from last quarter to current quarter.
Sample Data :
| Year | QTR | Category | Error Rate |
| 2023 | 1 | A | 20% |
| 2023 | 1 | B | 10% |
| 2023 | 1 | C | 15% |
| 2023 | 1 | D | 5% |
| 2023 | 1 | E | 10% |
| 2023 | 2 | A | 10% |
| 2023 | 2 | B | 20% |
| 2023 | 2 | C | 30% |
| 2023 | 2 | D | 10% |
| 2023 | 2 | E | 5% |
In above sample data Category B,C and D has error rate increased from Q1 to Q2. The expected output here would be 3.
Solved! Go to Solution.
@Vijay08V hi,
here is the DAX,
Proud to be a Super User!
A simple use case of DAX Window function.
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LearnAndPractise(Everyday) ) |
@Vijay08V hi,
here is the DAX,
Proud to be a Super User!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 101 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |