Hi,
Need to count any numbers from a 2D array if it is standalone in a horizontal row - formula needs to work for whatever column its in
Ex:
COLUMN A OUTPUT: 1 (only one number - 83 with no other numbers on that row)
COLUMN B OUTPUT: 1 (only one number - 56 with no other numbers on that row)
COLUMN C OUTPUT: 0 (all rows contain some number in it)
COLUMN D OUTPUT: 2 (two rows - 31 and 91 with no numbers in it)
Thanks!
Need to count any numbers from a 2D array if it is standalone in a horizontal row - formula needs to work for whatever column its in
Ex:
COLUMN A | COLUMN B | COLUMN C | COLUMN D |
25 | 94 | ||
83 | |||
92 | 78 | 32 | |
56 | |||
78 | 21 | ||
80 | 31 | ||
64 | 21 | ||
31 | |||
91 |
COLUMN A OUTPUT: 1 (only one number - 83 with no other numbers on that row)
COLUMN B OUTPUT: 1 (only one number - 56 with no other numbers on that row)
COLUMN C OUTPUT: 0 (all rows contain some number in it)
COLUMN D OUTPUT: 2 (two rows - 31 and 91 with no numbers in it)
Thanks!