cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Ravi123
Frequent Visitor

Getting Error message while expanding the table after passing URL to invoke custom function

Hi Experts,

 

I have a column which contain URL and i passed it to invoke custom function, when i tried to expand the table i am getting an error message and getting stuck in the row which has error message, i need to handle exception message and continue fetching  the data for all the other rows.

My Custom function :
= (Url as text) as table =>
let
Source = Table.FromColumns({Lines.FromBinary(AzureStorage.BlobContents("" & Url), null, null, 1252)})
in
Source

Table-1Table-1Actual Data from URL  - 2Actual Data from URL - 2Error Details  -3Error Details -3

2 REPLIES 2
PhilipTreacy
Super User
Super User

Hi @Ravi123 

 

Use try .. otherwise to handle the error

 

= (Url as text) as table =>
let
Source = try Table.FromColumns({Lines.FromBinary(AzureStorage.BlobContents("" & Url), null, null, 1252)}) otherwise null
in
Source

 

 

Further reading if you wish

 

Handling errors in power query with try otherwise

 

regards

 

Phil

 



Did I answer your question? Then please mark my post as the solution.
If I helped you, click on the Thumbs Up to give Kudos.


Blog :: YouTube Channel :: Connect on Linkedin


Proud to be a Super User!


Hi @PhilipTreacy I tried it but it is not working getting the same error.

Helpful resources

Announcements
Vote for T-Shirt Design

Power BI T-Shirt Design Challenge 2023

Vote for your favorite t-shirt design now through March 28.

March 2023 Update3

Power BI March 2023 Update

Find out more about the March 2023 update.

March Events 2023A

March 2023 Events

Find out more about the online and in person events happening in March!

Top Solution Authors
Top Kudoed Authors