Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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)) )
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 32 | |
| 29 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 60 | |
| 58 | |
| 39 | |
| 24 | |
| 23 |