Check for zeros in three different lists
I would like to search for zeros three or more lists.I have a three lists with zeros in them, here are the lists:
List one [1062] [0] [0]
List two [9] [0] [291]
List three [0] [93] [0]
I need help with a program\function that will check each value of different lists and will select the zero which is not in the same column number as the one in the previous list:
in this case:
The second zero in column three in list one will be selected
Then the only zero in in list two will be selected
Then the first zero in column one will be selected.
All these zeros are not in the same column numbers. Thanks in advance.