Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hi,
I am using list.contains( { 1 , 2 , 3 , 4 , 5 } , { "?", """ } ) but the " does not work. How do I include in the list?
Thanks.
Solved! Go to Solution.
""" has to be replaced by """"
A sidenote - List.Contains takes only a single value. You should not use a list as a parmeter value to be found. While using equationCriteria parameter, you can do many things, but let's set that aside for the time being.
You will need to use List.ContainsAny or List.ContainsAll as per your requirement. These allow a list of values which can be searched.
""" has to be replaced by """"
A sidenote - List.Contains takes only a single value. You should not use a list as a parmeter value to be found. While using equationCriteria parameter, you can do many things, but let's set that aside for the time being.
You will need to use List.ContainsAny or List.ContainsAll as per your requirement. These allow a list of values which can be searched.