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! Request now
In PowerQuery I want to add a custom column that provides total number of unique occurences of a key value for a primary key column
For example, new custom column(Count) should be created based on total number of unique occurences of ID for a certain Key
Below screen shot is what I'm trying to create
Solved! Go to Solution.
Try this:
ID Count per Key =
CALCULATE(
DISTINCTCOUNT('TableKeyCountMeasure'[ID]),
Allexcept('TableKeyCountMeasure', 'TableKeyCountMeasure'[Key])
)
Try this:
ID Count per Key =
CALCULATE(
DISTINCTCOUNT('TableKeyCountMeasure'[ID]),
Allexcept('TableKeyCountMeasure', 'TableKeyCountMeasure'[Key])
)
AWESOME !!
Thanks for the help, this works as expected
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.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 13 | |
| 8 | |
| 8 | |
| 8 |