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
CreativeSteph
Frequent Visitor

Extract Values from a list Records

I'm trying to extract the records out of a list.  I've read this but I'm still stuck...  https://community.powerbi.com/t5/Power-Query/Extract-Values-From-a-List-of-Records/td-p/2061234

 

I am trying to download NDC numbers from the FDA using the JSON code provided here...  https://open.fda.gov/data/downloads/

CreativeSteph_0-1656687047010.png

So I added a column to rename "results.drug.drugsfda.partitions" to "NDC_List" because the "." causes a problem in the code.

CreativeSteph_0-1656691396495.png

= Table.AddColumn(#"Expanded results.drug.drugsfda", "NDC_List", each [results.drug.ndc.partitions])

 

Then, I tried to get the list items out with...

=Table.AddColumn(#"Added Custom", "NDC Out", each let typeList = [NDC_List], typeCount = List.Count([NDC_List]) in Text.Combine(List.Transform(List.Numbers(0, typeCount, 1), each Record.Field(typeList{_},"/drug/ndc data")), ", "))

 

So the error says "Expression.Error: The field '/drug/ndc data' of the record wasn't found.
Details:
display_name=/drug/ndc data
file=https://download.open.fda.gov/drug/ndc/drug-ndc-0001-of-0001.json.zip
size_mb=26.48
records=133919"

 

The record in "NDC_List" looks like this 

CreativeSteph_2-1656687662511.png

How do I access that data?

 

Thanks in advance!

 

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

In your expression of Table.AddColumn you need to replace "/drug/ndc data" with "display name"

View solution in original post

2 REPLIES 2
CreativeSteph
Frequent Visitor

Thanks Vijay!  I got it working!

Vijay_A_Verma
Super User
Super User

In your expression of Table.AddColumn you need to replace "/drug/ndc data" with "display name"

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
Top Kudoed Authors