The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!