The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |