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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
Anonymous
Not applicable

Flag order ID lines with specific product combination

Hi,

I have a table with order lines that have duplicated order ID if a order as multiple purchased products. 
i would like to flag order lines that have a certain products (column B) for the same order ID (column A)

Would you be able to help?

thx a bunch!

1 ACCEPTED SOLUTION
jennratten
Super User
Super User

Hello - this is how you can do it.  This example is returning true in the new column "Multi-Line and Contains Diamond" if there is more than one row of the same product category and if the product name contains the word diamond.

 

Table.AddColumn ( #"Changed Type", "Multi-Line and Contains Diamond", let ProductCategory = #"Changed Type"[Product Category] in (x) => Text.Contains ( x[Product], "diamond", Comparer.OrdinalIgnoreCase ) and List.Count ( List.Select ( ProductCategory, each _ = x[Product Category] ) ) > 1, type logical )

 

jennratten_0-1693331810861.png

 

If this post helps to answer your questions, please consider marking it as a solution so others can find it more quickly when faced with a similar challenge.

Proud to be a Microsoft Fabric Super User

View solution in original post

1 REPLY 1
jennratten
Super User
Super User

Hello - this is how you can do it.  This example is returning true in the new column "Multi-Line and Contains Diamond" if there is more than one row of the same product category and if the product name contains the word diamond.

 

Table.AddColumn ( #"Changed Type", "Multi-Line and Contains Diamond", let ProductCategory = #"Changed Type"[Product Category] in (x) => Text.Contains ( x[Product], "diamond", Comparer.OrdinalIgnoreCase ) and List.Count ( List.Select ( ProductCategory, each _ = x[Product Category] ) ) > 1, type logical )

 

jennratten_0-1693331810861.png

 

If this post helps to answer your questions, please consider marking it as a solution so others can find it more quickly when faced with a similar challenge.

Proud to be a Microsoft Fabric Super User

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

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