Summary of all "False" columns

Hello,
I have an app based on โ€œTrueโ€ , โ€œFalseโ€ questions. Is there any way to make an expression that would list all the โ€œFalseโ€ columns?

Example:

Question 1 : False
Question 2: True
Question 3: False
Question 4: True

Summary:
Question 1: False
Question 3: False

Thanks!

0 2 251
2 REPLIES 2

Yes, Iโ€™ll assume you have a Questions table that you also record the answers into. You can write a SELECT() expression as follows:

SELECT(Questions[Row ID], [Answer] = "FALSE")

I`ll check that out, thanks!

Top Labels in this Space