Forum Discussion

Pradeep_12's avatar
Pradeep_12
New Member
8 months ago
Solved

Need Help with Dynamic Row count Based on Table Visual and Slicers

Hi Team, I’m currently working on a project and there is a requirement to display the row count of a table visual. The row count should update dynamically every time the user interacts with slicers...
  • Selva-Salimi's avatar
    8 months ago

    Hi Pradeep_12 ,

     

    if your visual table is different from yout table you can write a measure as follows:

     

    cnt = var tbl = summarize(your_table , [column1 in visual table] , [column 2 in visual table] ,...)

    return

    countrows(tbl)

     

    if visual table is the same as your table you just need to write a measure like this:

     

    cnt= countrows(your_table)

     

    If this post helps, then I would appreciate a thumbs up šŸ‘ and mark it as the solution āœ”ļø to help the other members find it more quickly.