View Name Plus Count

I want the total count to be shown along with the pendency name. I have also given an image below for reference.

In view’s Display name, try

" …your desired view’s name… " & TEXT(COUNT( …the name you select in option ‘For this data’… [_RowNumber]))

" …your desired view’s name… " &" "& TEXT(COUNT( …the name you select in option ‘For this data’… [_RowNumber]))

1 Like

You can have a space after the view name like,

"View Name " & TEXT(…)

no need the extra & " " &

1 Like