Hi, I've been using the eval function a lot lately to conditional concat a bunch of fields and text.
example: eval(field1[. != ""]; 'concat(field1, field2, "text")')
So if the field is not empty, it gets added. Very useful!!
but now I want to use 2 conditions: so something like
eval(field1[. != "" and . != "test"]; 'concat(field1, field2, "text")')
so field1 must not be empty AND not be "test".
is this possible?
I also tried to nest another eval, where now the concat expression is, but that's not working somehow.
tx!