Min Values when comparing two lists

Hello, is there a way to compare two lists and produce the max value for each index of the lists. For example, the first value of both lists will be compared and the min value will be placed in the first index of the new list. Thank you

Hi James: not sure I understand your question. Can you rephrase it? Or post and screenshot of your definition, with notes of the values you expect to see?

If you are trying to get the min/max values out of 2 lists, it would be like the image below, but am not sure that’s what you are trying to achieve…

The easiest option is to transpose and evaluate each new sublist:

20160330-5

Great thank you, that was exactly what I needed to do!