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
Anonymous
Not applicable

Source contains field with List which contains Records -> Find specific entry

Hello,

 

I have a data source (Databricks) where one fields is returned as a list which contains various records.  I know that I can explode the list and then explode the records to get different columns but I would like to avoid this.

 

My interest is to verify the existence of specific values within the records itself and define some flag.

 

As an example, my data source return something like this:

 

Employee #Details
1List
2List

 

When I expand "Details", I get various "records" which then are represented with the following fields: Address, City, State, Country

 

At the end, I would like to simply get a calculated column such as "IsCountryUSA" = True | False if one of the records that belongs to the employee is equals to United States (an employee could have more than one adress).

 

Is there any way to create a calculated column in PowerQuery without actually exploding everything?

Thank you

 

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

Try this code or please see the attached.

 

let
    Source = #table( type table [Employee = number, Details = list], 
        {
            {
                1, 
                { 
                    [Address="", City="", State="", Country="USA"], 
                    [Address="", City="", State="", Country="UK"] 
                }
            },
            {
                2, 
                { 
                    [Address="", City="", State="", Country="Poland"], 
                    [Address="", City="", State="", Country="UK"] 
                }
            } 
        } 
    ),
    #"Added Custom" = Table.AddColumn(Source, "IsCountryUSA", each List.Contains( Table.FromRecords( [Details] )[Country], "USA" ), type logical )
in
    #"Added Custom"

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

View solution in original post

4 REPLIES 4
Mariusz
Community Champion
Community Champion

Hi @Anonymous 

 

Try this code or please see the attached.

 

let
    Source = #table( type table [Employee = number, Details = list], 
        {
            {
                1, 
                { 
                    [Address="", City="", State="", Country="USA"], 
                    [Address="", City="", State="", Country="UK"] 
                }
            },
            {
                2, 
                { 
                    [Address="", City="", State="", Country="Poland"], 
                    [Address="", City="", State="", Country="UK"] 
                }
            } 
        } 
    ),
    #"Added Custom" = Table.AddColumn(Source, "IsCountryUSA", each List.Contains( Table.FromRecords( [Details] )[Country], "USA" ), type logical )
in
    #"Added Custom"

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
LinkedIn


 

Anonymous
Not applicable

Wow, thanks folks, it works great!

Anonymous
Not applicable

Hi, 

 

You can use these functions to achieve this. 

 

 

Table.AddColumn(#"Added Custom", "IsCountryUSA", each List.Contains(Table.Column([Details], "Country"), "USA"))

 

 

 

Let me know if you need any more help!

amitchandak
Super User
Super User

@Anonymous , refer to if these functions can help

https://docs.microsoft.com/en-us/powerquery-m/list-functions

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