Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
kavithakesi
Frequent Visitor

Hi, I am looking for a table in Power BI which has filtering and pagination functionality?

Dear Team,
I am looking for a table in powerBI which has filtering and pagination functionality?
Any input on the above would be appreciated.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

HI @kavithakesi,

AFAIK, current power bi table visual does not support these type of features.

Perhaps you can add an index field to your table records and write a custom measure formula with what if parameter filters(page size, page index) to use on the table visaul to achieve dynamic pagination.

Formula:

 

Pagination = 
VAR currIndex =
    MAX ( 'Table'[Index] )
VAR PageSize =
    MAX ( Selector[PageSize] )
VAR PageIndex =
    MAX ( Selector2[PageIndex] )
RETURN
    IF (
        currIndex > PageIndex * PageSize
            && currIndex <= ( PageIndex + 1 ) * PageSize,
        "Y",
        "N"
    )

 

1.png

3.png

Regards,

Xiaoxin Sheng

View solution in original post

1 REPLY 1
Anonymous
Not applicable

HI @kavithakesi,

AFAIK, current power bi table visual does not support these type of features.

Perhaps you can add an index field to your table records and write a custom measure formula with what if parameter filters(page size, page index) to use on the table visaul to achieve dynamic pagination.

Formula:

 

Pagination = 
VAR currIndex =
    MAX ( 'Table'[Index] )
VAR PageSize =
    MAX ( Selector[PageSize] )
VAR PageIndex =
    MAX ( Selector2[PageIndex] )
RETURN
    IF (
        currIndex > PageIndex * PageSize
            && currIndex <= ( PageIndex + 1 ) * PageSize,
        "Y",
        "N"
    )

 

1.png

3.png

Regards,

Xiaoxin Sheng

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors