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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors