Dear Gents,
It is so nice to see how this community works ;)
Thanks for all the ideas, ...of course I look for the most simplest one, and the below works well for me at the moment.
In[6]:= deal = Thread[list1 > list2]
Out[6]= {False, False, True}
However, I needed something after then the conditions was evaluated, and I was able to program only with one out put, like this
In[7]:= deal = Thread[list1 > list2] /. x_ /; x == True -> "PASS"
Out[7]= {False, False, "PASS"}
Could you please suggest maybe a way where I can pass 2 possible outputs from the boolean? Since I have false OR true output from "Thread[]" (but with condition I could pass only one output)
for instance: If x return false, then "FAIL" should be passed into the list
Thanks again