Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Product: Power BI Desktop (x64)
Version: 2.54.4970.961
I'm using File.Contents function for reading a file that doesn't exists in my filesystem. I expect it to return an error. Graphically it does, as shown in the image below:
The code for the query above:
let
Source = File.Contents("C:\not-existent-file.txt")
in
SourceAlthough if a try to catch the error programmatically, by using a try expression, it returns a record, with the HasError field set to false, as shown in the image below:
The code for the query above:
let
Source = try File.Contents("C:\not-existent-file.txt")
in
SourceI don't think that is the expected behavior.
I actually expect the HasError field to be set to true and an Error field containing an Error record. So I could programmatically deal with it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.