Hi everyone. I am trying to use this code to countrows BUT cannot get it to work once I add in the Yes/No column.
CountRows(
Filter(
TSGResponses,
'TSGActive (TSGResponses)'.Yes,
dbam_gametitle = ThisItem.Value
)
) & If(
CountRows(
Filter(
TSGResponses,
'TSGActive (TSGResponses)'.Yes,
dbam_gametitle = ThisItem.Value
)
) = 1,
" response",
" responses"
)
Once I remove the Yes/No column, everything works great. If I start from scratch, using this code,
@ckserra33 - try:
CountRows(
Filter(
TSGResponses,
TSGActive = 'TSGActive (TSGResponses)'.Yes,
dbam_gametitle = ThisItem.Value
)
) & If(
CountRows(
Filter(
TSGResponses,
TSGActive = 'TSGActive (TSGResponses)'.Yes,
dbam_gametitle = ThisItem.Value
)
) = 1,
" response",
" responses"
)
WarrenBelz
146,651
Most Valuable Professional
RandyHayes
76,287
Super User 2024 Season 1
Pstork1
65,997
Most Valuable Professional