This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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.