Dashboard -> tabs -> View name. Is it possible to include the number of rows in a view's title?

Any ideas on how to include the number of related rows in a view name? Like โ€œComments (2)โ€
The first tab โ€œDetailsโ€ is an article, the second โ€œCommentsโ€ is a related table.


like:

0 4 314
  • UX
4 REPLIES 4

Any ideas without using slices?

("Comments (" & TEXT(COUNT(Comments[_ROWNUMBER])) & ")")

Hey Steve! Yes, it was the first thing I tried. I need to show only the number of comments related to a selected article. But this formula shows the total amount of comments in the comments table.

What you want isnโ€™t easily possible, as the Display Name expression isnโ€™t aware which specific rows are included in the display. You would have to use a slice or some other means to limit the rows and base the count off the slice.

Top Labels in this Space