Finding and Listing Value in Cells
Question:
In 10 cells in a row, two unspecified values will appear. In all other cells, there is a zero. For example:
A B C D E F G H I J K
0 61 0 0 28 0 0 0 0 0 0
I have many rows, and the column in which they appear is randomized. In each row, one of the two values falls in the "correct" location. Let's say here, I know the number in column "B" is correct.
Using this information, I can list "61" in a separate column. But is there any way to find the second number, "28" without having the additional information of where it is located?
Thanks.