This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Dear all
sorry to say that am stuck in task as below details
the case is have coulmn with faultsID, so i want to display count of faultIDs that repeated 50 times or more
lets say, if i have one ID repeated 50time or more then i have to display value one, and so on for other IDs.
thanx
Solved! Go to Solution.
Hi @Anonymous
try smth like
Measure =
var _cnt = CALCULATE(COUNTROWS(Table), ALLEXCEPT(Table, Table[faultsID]) )
RETURN
IF(_cnt > 50, 1, 0)
Hi @Anonymous
try smth like
Measure =
var _cnt = CALCULATE(COUNTROWS(Table), ALLEXCEPT(Table, Table[faultsID]) )
RETURN
IF(_cnt > 50, 1, 0)
HI
soory may be i am not make it clear
i have coulmn with faultIDs,
if three IDs is repeated 50 time or more (Each one is repeated 50 times) then i have to display 3 in the card
thanx in advance for your support
@Anonymous
try to SUMX() function in measure and put this measure into a card visual
Measure =
CALCULATE( SUMX(Table, IF(_cnt > 50, 1, 0)) )
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |