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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have a list of orderid in my repot. then i have a anohter query pull data based on this list. here is my M language for using this list as in statement:
WHERE #(lf) WEBORDERNUM IN(" & Text.Combine(List,",") & ")"
But the problem is if you look at the query , it does use the list value, but the format is not right:
WEBORDERNUM IN(16915633054,16913450137,16912482428)
Because in oracle databse, you should writer it as:
WEBORDERNUM IN('16915633054','16913450137','16912482428')
So can I add '' to all my order id?
Solved! Go to Solution.
One method:
To put single-quotes around each item in the list, change
Text.Combine(List,",")
to
Text.Combine( List.Transform(List, each "'"&_&"'"), ",")
Regards,
Owen
One method:
To put single-quotes around each item in the list, change
Text.Combine(List,",")
to
Text.Combine( List.Transform(List, each "'"&_&"'"), ",")
Regards,
Owen
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.