I would like to return the count of the number of rows for which ANY of the columns have the number 1
. The table is three columns, and each column can contain either 0
, 1
, 2
, or 3
. Example:
Col1 | Col 2 | Col 3
0 | 1 | 0
1 | 2 | 3
0 | 0 | 0
3 | 1 | 1
2 | 2 | 2
etc.
I would like the formula to return 3
.