I have a column which has football scores in it. They are input as 2 digits and then formatted to contain a dash using the 0-0 format; as an example, 2-0 is input as 20, 4-1 is input as 41 and so on. The next column is to automate the result, so if there is a zero in the score anywhere, the result would be L and if there is not a zero, it is W
I tried using a wildcard to indicate 0* or *0, but have not been able to get it working correctly. This is what I tried =IF(OR(N2=*0, N2=0*), "L", "W")
So how does one indicate that a zero followed by any number or any number followed by zero is L, if both are false, then it is a W?
Thanks in advance
I tried using a wildcard to indicate 0* or *0, but have not been able to get it working correctly. This is what I tried =IF(OR(N2=*0, N2=0*), "L", "W")
So how does one indicate that a zero followed by any number or any number followed by zero is L, if both are false, then it is a W?
Thanks in advance