MikeMike
7 years agoQrew Cadet
Can a formula field IF check if a value is in a list of values?
I have a formula field where I'd like to check if the value in a field is contained in a list of values
Or do I need to put each line separately?
IF([Field1] in [1, 2, 5, 10], "Yes", "No")Is this possible somehow?_ If the value in Field1 is one of the values in my list (1, 2, 5, 10), then output "Yes", otherwise output "No"
Or do I need to put each line separately?
If([Field1] = 1, "Yes", [Field1] = 2, "Yes", [Field1] = 5, "Yes", [Field1] = 10, "Yes", "No")