I’m trying to creat e function with IF condition. But isn’t working…
I’ve a list, thats the users can select.
List Options:
ListResult = one of below options.
a = 1
b = 2
c = 3
My conditional:
IF(ListResult =1||2,“Ok”,“Not Okay”)
When i chose (a) that’s equal 1, it’s working, but when i change to (b) that’s equal 2, ins’t working…
I’m wrong to use || symbol?