Calculate a row

Need help with calculating a row by counting the number of YES answers from columns in the same row.

0 1 171
1 REPLY 1

Steve
Platinum 4
Platinum 4

Try something like:

SUM(
  LIST(
    IFS(("YES" = [Col1]), 1),
    IFS(("YES" = [Col2]), 1),
    ...
  )
)
Top Labels in this Space