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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello everybody! I hope you all are very good!!!
I have a Table with data, and I want to show in the report how many of then suffer fron CONGESTION in their communications. The requirements is that it only shows the number when congestion has happened more thay five times:
By now, this is working good. But now they tell me they want to know how many Users have such occurrence more than 5 times.. I have developed a measure:
Which numbers are correct when I have in mind all the occurrences. BUT, the Card does not allow me to make the same filter:
So I got 79 users instead of two Users, which is an error. How can I also filter this second card to make it a ppear Users = 2?
Thanks a lot! Best regards,
Cheema Ortega
Solved! Go to Solution.
Hi @Chema_Ortega_Ga ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Users CONGESTION =
VAR _tab =
SUMMARIZE (
'GCC_COSTS AUTO_COST_OUTPUT',
'GCC_COSTS AUTO_COST_OUTPUT'[User],
"@CONGESTION", CALCULATE ( SUM ( 'GCC_COSTS AUTO_COST_OUTPUT'[CONGESTION] ) )
)
RETURN
COUNTROWS ( FILTER ( _tab, [@CONGESTION] > 5 ) )
Best Regards
Hi @Chema_Ortega_Ga ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Users CONGESTION =
VAR _tab =
SUMMARIZE (
'GCC_COSTS AUTO_COST_OUTPUT',
'GCC_COSTS AUTO_COST_OUTPUT'[User],
"@CONGESTION", CALCULATE ( SUM ( 'GCC_COSTS AUTO_COST_OUTPUT'[CONGESTION] ) )
)
RETURN
COUNTROWS ( FILTER ( _tab, [@CONGESTION] > 5 ) )
Best Regards
Hi v-yiruan-msft,
Thanks a lot! I think you've worked it out. SOOO MUCH APPRECIATED!!!!
Chema
Thanks a lot. Best regards!
Chema Ortega
Please provide a workable sample data and your expected result from that. It is hard to figure out what you want to achieve from the description alone.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 62 | |
| 55 | |
| 39 | |
| 16 | |
| 15 |
| User | Count |
|---|---|
| 93 | |
| 85 | |
| 33 | |
| 31 | |
| 25 |