Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi everyone!
I need to generate a new column in my report using DAX. This new column should contain the sum of occurrences of a value in Column A based on the values in Column B.
Can someone help me?
Table example.
Column A Column B (only unique values)
------------------------------------
Car Jet
Jet Car
Bus Bus
Bus Bike
Car Plane
Car Boat
I would like the output to be:
Column A Column B Column C
----------------------------------------------------------
Car Jet 1
Jet Car 3
Bus Bus 2
Bus Bike 0
Car Plane 0
Car Boat 0
Here is an example in python of what I need to do in DAX.
PS. I can't use python script in power bi.
Solved! Go to Solution.
Hi @TiagoTED
Try this code to add a new column:
Column C =
VAR _B =
FIRSTNONBLANK ( 'Table'[Column B], "" )
VAR _C =
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER ( ALL ( 'Table' ), 'Table'[Column A] = _B )
)
RETURN
IF ( ISBLANK ( _C ), 0, _C )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
Hi @TiagoTED
Try this code to add a new column:
Column C =
VAR _B =
FIRSTNONBLANK ( 'Table'[Column B], "" )
VAR _C =
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER ( ALL ( 'Table' ), 'Table'[Column A] = _B )
)
RETURN
IF ( ISBLANK ( _C ), 0, _C )
Output:
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos✌️!!
Thanks so much for the help, the code worked perfectly!
I hope this answer can help others!
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
10 | |
7 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |