M
MZ
I'm trying to count the number of columns that contain values where one row
is greater than the other. For instance,
Data1 5 8 9 3
Data2 16 81 49 1
I want to count the number of times the Data1 column squared is greater than
the Data2 column. The answer of course should be 3. I'd like to avoid
creating a third row to specifically perform the comparison and then just
summing that third row. No new rows!
This seems like a trivial problem, but I haven't been able to get it to
work.
is greater than the other. For instance,
Data1 5 8 9 3
Data2 16 81 49 1
I want to count the number of times the Data1 column squared is greater than
the Data2 column. The answer of course should be 3. I'd like to avoid
creating a third row to specifically perform the comparison and then just
summing that third row. No new rows!
This seems like a trivial problem, but I haven't been able to get it to
work.