Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Apps - Building Power Apps
Unanswered

Countrows using Yes/No column from DV

(1) ShareShare
ReportReport
Posted on by 419

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, 

CountRows(
    Filter(
        TSGResponses,
        'TSGActive (TSGResponses)'.No,
        dbam_gametitle = ThisItem.Value
    )
) it always counts the same thing, whether I use yes or no.
 
Any help would be amazing!

thanks
 
Chris
  • Ami K Profile Picture
    15,665 Super User 2024 Season 1 on at
    Re: Countrows using Yes/No column from DV

    @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"
    )

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,651 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,997 Most Valuable Professional

Leaderboard