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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Stharwani
Advocate II
Advocate II

Error Handling in M

Hello,

 

I am building a Custom Connector to get data from a web sevrice. There are instances where the data would be null. Is tehre any error handling mechanism where it if it runs into an error, it can skip it and move on. Like Try catch?

1 REPLY 1
Eric_Zhang
Microsoft Employee
Microsoft Employee


@Stharwani wrote:

Hello,

 

I am building a Custom Connector to get data from a web sevrice. There are instances where the data would be null. Is tehre any error handling mechanism where it if it runs into an error, it can skip it and move on. Like Try catch?


@Stharwani

I'm not a M master, but based on my test, there's some error handling mechanism in M, at least the "try" word works some way. The M code below processes to last step though there's error midway. 

 

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WSlSK1YlWSgKTyUqxsQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type text) meta [Serialized.Text = true]) in type table [Column1 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}}),
    //change the type of an non-existing column
    #"Changed Type1" = try Table.TransformColumnTypes(#"Changed Type",{{"addAnewCol", Int64.Type}}),
    #"Final result" = #"Changed Type"
in
    #"Final result"

Could you be more specifc on your scenario, what kind of web service? I think you might add a check null step.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.