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! Learn more
I need to limit my table view by 20k or 30k rows of data as default view in Power BI report level table view. When there is no slicer filter applied on the table but when the slicer filter are applied the table should display that particular filter combination data with 20k -30K. Is it possible?. Please let me know the inputs on this or some alternative solution.
Solved! Go to Solution.
@Malarvizhi_P_R ,You can try using RANKX and ISFILTERED
First create a RANK column, a calculated column
Rank = RANKX(ALL('YourTable'), 'YourTable'[YourSortingColumn], , ASC, DENSE)
Then create a measure for filter
Use the FilterMeasure in the visual-level filters pane of your table visual. Set the filter to show only rows where FilterMeasure equals 1.
Proud to be a Super User! |
|
You can create an index column in power query:
You can find Index Column in Add column pane.
So that you can use the workaround from @bhanu_gautam.
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Malarvizhi_P_R ,You can try using RANKX and ISFILTERED
First create a RANK column, a calculated column
Rank = RANKX(ALL('YourTable'), 'YourTable'[YourSortingColumn], , ASC, DENSE)
Then create a measure for filter
Use the FilterMeasure in the visual-level filters pane of your table visual. Set the filter to show only rows where FilterMeasure equals 1.
Proud to be a Super User! |
|
I don't have any unique key in fact table. Even after creating composite key. fact table rows don't have unique key. The table visual has columns from dimensions table there no specific column for me apply the filter on top of this I need apply this condition to limit my table view by 20k or 30k rows of data as default view in Power BI report level table view. When there is no slicer filter applied on the table but when the slicer filter are applied the table should display that particular filter combination data with 20k -30K. Kindly let me know your the inputs on this or some alternative solution
You can create an index column in power query:
You can find Index Column in Add column pane.
So that you can use the workaround from @bhanu_gautam.
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.