Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet 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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.