Count of "Yes"

I need a count of all the days that have a yes in it. 

Student IDDateDay Present
1234568/11/2022Yes
1234568/12/2022Yes
1234568/13/2022No
1234568/14/2022Yes

I have another virtual column where I want to display a count of all the dates with a yes in it, in this case it would be 3 , Any ideas?

0 3 78
3 REPLIES 3

I think you should use the COUNT() expression

Here the guide COUNT() 

Something like

COUNT(SELECT(Student[ID], (Day Present = TRUE), TRUE))

I tried this

Select ([Student ID].[Email], ([Student ID] = [Student ID].[Student ID]), True)

Is not working, says invalid inputs.

Top Labels in this Space