Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
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
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 40 | |
| 31 | |
| 18 | |
| 18 | |
| 15 |