Hello,
I'm looking to count the number of unique values in multiple non-adjacent columns. These columns do have blanks. E.g.
Column A:
1
2
3
4
5
6
7
Column E:
2
Blank
4
5
6
7
8
9
Blank
10

So I would want to get a result of 10 total unique values within the two combined columns.

Thank you