Forum Discussion

sspk's avatar
sspk
Frequent Visitor
10 months ago
Solved

Index value shows empty in the table view component?

Hello Team, I am trying to display 15 rows per page in table. But as of now it shows only 14 records.   PageNumbers_wikiiiii = GENERATESERIES(1, 1000, 1) RowsPerPage_wiki = 15   DynamicR...
  • sspk's avatar
    sspk
    10 months ago

    HI Anonymous ,

    Thank you for your reply.Yes you are correct RANKX is not calculated properly. So created a calculated column in the same table where index is created using Power Query Editor. for the Table,
    DRW  = 

    RANKX(
        ALL('wiki_pages_trending_pop_points'),
        'wiki_pages_trending_pop_points'[PopPoints] + 0.000001 * 'wiki_pages_trending_pop_points'[Index],
        ,
        DESC,   // PopPoints descending
        DENSE   // consecutive ranks, no skipped numbers
    )
    Both the column values are in the same Table. Now it looks fine,
     
     
     
     
     
     
     
    Thank you.