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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have number of id's and i wana count how many id call twice or more
Ex
1000 customer
800 call mor than 1
200 call only 1
I wana found number 800
The column have number
Solved! Go to Solution.
Hi, @Eng-mohd
try below
measure =
var a = ADDCOLUMNS(
ALL('Table (5)'[id]),
"count",CALCULATE(
IF(COUNT('Table (5)'[id])>1,1,0)
)
)
return
SUMX(a,[count])
here my data
out put according to data
Hi, @Eng-mohd
try below
measure =
var a = ADDCOLUMNS(
ALL('Table (5)'[id]),
"count",CALCULATE(
IF(COUNT('Table (5)'[id])>1,1,0)
)
)
return
SUMX(a,[count])
here my data
out put according to data
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |