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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi!!
I have a question about how to show only some rows in the report,
I have the column Round, that is calculated from the column LC; with this function Round = IF(RIGHT(INT(J2),3)="000",1,0) and work fine.
Now, I show in the report, only the values 1 from the column Round; and I want to show only 30 rows, actually i have a lot of rows, and only want show 30 order by quantity.
Thanks for your comments,
Monica
Solved! Go to Solution.
Hi MonicaElizondo,
I have made a mockup as below in which to achieve top3 by quality. You can firstly create a calculate column using DAX like this pattern.
Rank = RANKX(Table1, Table1[Quality], ,ASC ,Dense)
Then create a measure using DAX like this pattern.
Round = IF(MAX(Table1[Rank]) <= 3, IF(RIGHT(ROUNDDOWN(MAX(Table1[LC]), 0), 3) = "000", 1, 0))
Regards,
Jimmy Tao
Hi MonicaElizondo,
I have made a mockup as below in which to achieve top3 by quality. You can firstly create a calculate column using DAX like this pattern.
Rank = RANKX(Table1, Table1[Quality], ,ASC ,Dense)
Then create a measure using DAX like this pattern.
Round = IF(MAX(Table1[Rank]) <= 3, IF(RIGHT(ROUNDDOWN(MAX(Table1[LC]), 0), 3) = "000", 1, 0))
Regards,
Jimmy Tao
Hello!!
Thanks for the help!!
Hi @Anonymous
In the visualization -> Fields Tab -> In visual filter, you can apply filter for 'Round'column.
For the TOP 30, in the same pane, select the Product column under visual filter -> In the filter Type-> Select TOP N and give 30 as value.
Thanks
Raj
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 99 | |
| 76 | |
| 56 | |
| 51 | |
| 46 |