Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

Counting a Enum list that results in a certain value

Hello. This is my first time posting.

I I have an ENUM in Column DAY that allows 1,2,3,4,5
I want to count how many times the result is a 1
I tried
COUNT(SELECT(Candidates[day], IN([Day], {“1”})))

The result was 1 and it should be many.
Can anyone help me with this?

Solved Solved
0 8 1,142
1 ACCEPTED SOLUTION

Probably something like… COUNT(SELECT(Candidates[Day],AND([Day]=“1”,[Campaign]=[_THISROW].[Campaign])))

View solution in original post

8 REPLIES 8
Top Labels in this Space