Hi everyone! I’m new to the community, so Hello World.
I need to use a conditional filter based on multiple values. When working with just one value it works without issues
record.values.txt_Input_Activity != “SEL”
What I need to do is something like this:
record.values.txt_Input_Activity != “SEL” OR “Trusted_Contact” OR “OtherValue”
Do you know any syntax that could work on this scenario? I’ve attached the image f the conditional field.
Hey, you can use !has(record.values.Field, "Value")
Note: You’ll have to save the record for the condition to evaluate, there is currently a bug with conditional fields and multi values which is being fixed.
That expression is not working. I got the following error:
Failed to evaluate record block conditional fields: 417249149906386947: can not evaluate has(record.values.txt_Input_Activity, “SEL”): runtime error: invalid memory address or nil pointer dereference.
Maybe I have to use something else to make it work?
Here is an example
record.values.txt_Input_Activity == “Assessment” || record.values.txt_Input_Activity == “Crisis_Room” || record.values.txt_Input_Activity == “Partner_Event”