Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NoobAnalyst01
Helper I
Helper I

Using list in parameter in M language

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? 

1 ACCEPTED SOLUTION
OwenAuger
Super User
Super User

Hi @NoobAnalyst01

 

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


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

View solution in original post

1 REPLY 1
OwenAuger
Super User
Super User

Hi @NoobAnalyst01

 

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


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.