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
gpiero
Skilled Sharer
Skilled Sharer

Help to use LIst.Contains()

 

Hi,

 

I am trying to explore how to use List.Contains without results.

I would like to define list of Customer Code List.Contains() instead of write a lot of rows with "or".

The code below does not produce any error, but I do not get the proper result.

 

Could someon help me to understand how to solve this issue?


Regards

 

 

#"Added Conditional Column" = Table.AddColumn(#"Changed Type1", "CS_DLV_EUR1", each if ([Delivery Type] = "ZSDS"
                                                                                           or  [Delivery Type] = "ZSPD")
                                                                                           and [Customer Code] = "32"
                                                                                   then true
                                                                                   /* {248, 129, 936, 215, 253, 245, 1043, 1439, 127, 1032, 217, 218, 224, 212, 32, 1033, 1495, 202, 207, 307, 1031, 252, 306*/        
                                                                                   else if ([Delivery Type] = "ZSDS"
                                                                                           or  [Delivery Type] = "ZSPD")        
                                                                                           and [Customer Code] = "149" 
                                                                                           and [Code Add.Goods] = List.Contains({"Code Add.Goods"}, Text.From({1033, 1495, 32, 300001}))
                                                                                   then true
                                                                                   else false),

 

If I can...
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @gpiero 

It is easy with DAX,

Create a calculated column

Column =
IF (
    [Delivery Type] IN { "ZSDS", "ZSPD" }
        && [Customer Code] = 32,
    TRUE (),
    IF (
        [Delivery Type] IN { "ZSDS", "ZSPD" }
            && [Customer Code] = 149
            && [Code Add.Goods] IN { 1033, 1495, 32, 300001 },
        TRUE ()
    )
)

3.png

Assume [Customer Code] and [Code Add.Goods] are of number type not text,

If they are text, replace [Customer Code] = 32 with [Customer Code] = "32",

[Code Add.Goods] IN { 1033, 1495, 32, 300001 } with [Code Add.Goods] IN { "1033", "1495", "32", "300001" }.

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @gpiero 

It is easy with DAX,

Create a calculated column

Column =
IF (
    [Delivery Type] IN { "ZSDS", "ZSPD" }
        && [Customer Code] = 32,
    TRUE (),
    IF (
        [Delivery Type] IN { "ZSDS", "ZSPD" }
            && [Customer Code] = 149
            && [Code Add.Goods] IN { 1033, 1495, 32, 300001 },
        TRUE ()
    )
)

3.png

Assume [Customer Code] and [Code Add.Goods] are of number type not text,

If they are text, replace [Customer Code] = 32 with [Customer Code] = "32",

[Code Add.Goods] IN { 1033, 1495, 32, 300001 } with [Code Add.Goods] IN { "1033", "1495", "32", "300001" }.

 

Best Regards
Maggie

 

Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-juanli-msft 

Many thanks for solution.

Yes, it is clear, in DAX we can do in this way.

 

I only wanted to understand how to replicate the same in Power Query.

 

Thanks again

If I can...

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.

Top Solution Authors