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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.