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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello All,
Thanks for seeing this Post.
I'm trying to find a way to caluculate the number of Rows with same IDS and put in a Seperate Dynamic measure/Column.
My Dataset looks like below
if we see the above table, Microsoft was repeated two times , So countofIDs Column is 2 for both the rows.
Similar for Salesforce. So how can we achieve this via Measure/Column
Regards
Karthik
Solved! Go to Solution.
Try
Num IDs =
CALCULATE (
COUNTROWS ( 'Table' ),
REMOVEFILTERS ( 'Table' ),
VALUES ( 'Table'[ID] )
)
Try
Num IDs =
CALCULATE (
COUNTROWS ( 'Table' ),
REMOVEFILTERS ( 'Table' ),
VALUES ( 'Table'[ID] )
)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
29 | |
18 | |
15 | |
7 | |
6 |