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.
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 |
---|---|
24 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |