R
Rod
I have two columns of data. I want to count how many times
a datum in the first column matches the corresponding
datum in the second column's corresponding cell. e.g.
Column A Column E
3 7
4 4
2 5
21 21
4 12
3 3
The return should be 3 since the numbers 4, 21 and 3 in
column A are matched with the same numbers across from
them in column E.
Thanks in advance for any help possible.
a datum in the first column matches the corresponding
datum in the second column's corresponding cell. e.g.
Column A Column E
3 7
4 4
2 5
21 21
4 12
3 3
The return should be 3 since the numbers 4, 21 and 3 in
column A are matched with the same numbers across from
them in column E.
Thanks in advance for any help possible.