I have an excel spreadsheet in which I need a formula to generate one of three outcomes based on 4 cells.

My three outcomes need to be win, loss, or draw. If the numbers of two of the cells is greater than the numbers in the other two, then it needs to display "win". If the opposite happens, it needs to display "loss". If either one cell exceeds, and the other one does not, then it needs to display "draw".

I am able to get the "win" and "loss" displayed properly with the following formula =IF(AND(C1>C2,C3>C4) "win" "loss").

I am unable to figure out how to incorporate the "draw" into this function to make this work.