The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi...I have a table in powe bi where i have multiple similar value in rows and i want a count of the total values of similar value in each row, something like this. Pls advise the formula for the same
Solved! Go to Solution.
Try adding a calculated column to your table and adding the below:
Column =
COUNTX (
FILTER (
Table1,
Table1[Entity] = EARLIER ( Table1[Entity] )
),
Table1[Entity]
)
where Table1 is your table.
Try adding a calculated column to your table and adding the below:
Column =
COUNTX (
FILTER (
Table1,
Table1[Entity] = EARLIER ( Table1[Entity] )
),
Table1[Entity]
)
where Table1 is your table.
Thanks...this gave me perfect result
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
28 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |