Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I'm trying to create a calculated field and I see there is a limit on the number of arguments of 2. Please does anyone know how to build an AND query with 5 arguments?
Thanks,
CM
Solved! Go to Solution.
Hi CloudMonkey
You can use the double ampersand operator (&&) to form the conjunction of more than two expressions.
e.g. A && B && C &&...
Or you could nest a bunch of AND functions, but that's probably harder to read.
Brilliant, thanks!