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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
musicbydannyd
Advocate IV
Advocate IV

JSON from URL in Table Column?

I have simple 2 column table with an ID and URL. Basic structure of URL parts are:

JSON_Column.png

Pasting one of the URLs into web browser does show data formatted as JSON and I can view the record(s) when creating a new query using Json.Document(Web.Contents("url")).

 

What I'm HOPING to acomplish is convert URL column to list of JSON record(s) associated with each ID. I've tried various combinations of column transfomations (Json.Document, Web.Contents, List.Transform, etc.), but am getting the dreaded "Formula.Firewall" error.

 

I know it's doable, but apparently my brain is still in quarantine.

 

TIA, Danny

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @musicbydannyd ,

 

Define a variable and then invoke custom function.

M code may like this:

(id as number) as table=>
let
    Source = Table.FromRecords(Json.Document(Web.Contents("https://xxxxxxxx" &Number.ToText(id)&"xxxx"))[subjects])
in
    Source

test_JSON from URL in Table Column..PNG

 

Best Regards,
Liang
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

5 REPLIES 5
V-lianl-msft
Community Support
Community Support

Hi @musicbydannyd ,

 

Define a variable and then invoke custom function.

M code may like this:

(id as number) as table=>
let
    Source = Table.FromRecords(Json.Document(Web.Contents("https://xxxxxxxx" &Number.ToText(id)&"xxxx"))[subjects])
in
    Source

test_JSON from URL in Table Column..PNG

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Liang,

Please provide more context/explaination around your solution.
I'm not understanding your answer.

-S

@V-lianl-msft, unfortunately, I had to put this project on hold for a while. During my last attempt, I WAS able to successfully create a formula as you described, however was still getting the "Formula.Firewall" error when invoking. Thanks, Danny

@V-lianl-msft, I was afraid there might be a custom function involved for this rookie... appreciate the example! 😁

 

Let me do a little more research and I'll report back with a solution or more help.

 

Thanks again all!

DannyD

lbendlin
Super User
Super User

Obviously this depends on the format of the actual JSON behind the URLs but you should just be able to expand the records that are returned from each Json.Document(Web.Contents(JSON))

 

Maybe the column name JSON throws Power Query off?

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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