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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Power Query M code equivalent to "iferror" function

Hi,

 

Please can you tell me the Power Query M code equivalent for the "iferror" function in excel?

 

Thanks,

 

CM

1 ACCEPTED SOLUTION
Anonymous
Not applicable

use "try....otherwise".

 

try <some code hear that may result in an error> otherwise  <run this code in case of error>

 

note that try and otherwise are NOT capitalized.  Also, no commas are needed.

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Hi all,

unfortunately this doesn't solve my issue.

  1. There's a textfield, with e.g. 01.02.2019 - 28.02.2019
  2. I divide this column into column A (startdate): 01.02.2019 and column B (enddate): 28.02.2019
  3. Now it can happen, that there is 01.02.2019 - 30.02.2019 written
  4. Due 30.02.2019 definitively an error occurs

If something like (4) happens, in column B must be written 31.12.2030 (e.g) and in a third column "check supplydate".

 

How can I fix this?

Maybe iferror / try.....otherwise is the wrong idea?

 

Thx in advance for your help.

@Anonymous  try this:

 

let
    Source = Table.FromList({[TextField ="02.01.2019 - 02.28.2019"],[TextField ="02.01.2019 - 02.30.2019"]},Record.FieldValues, {"TextField"}),
    #"Added StartDate" = Table.AddColumn(Source, "StartDate", each try Date.FromText(Text.BeforeDelimiter([TextField], " ")) otherwise Date.FromText("12/31/2030")),
    #"Added EndDate" = Table.AddColumn(#"Added StartDate", "EndDate", each try Date.FromText(Text.AfterDelimiter([TextField], " ", 1)) otherwise Date.FromText("12/31/2030")),
    #"Added Action" = Table.AddColumn(#"Added EndDate", "Action", each if [StartDate] = Date.FromText("12/31/2030") or [EndDate] = Date.FromText("12/31/2030") then "check supplydate" else "")
in
    #"Added Action"

DateCheck.PNG

 

 

Anonymous
Not applicable

Hi Bekah,
this works perfect - thank you very much...

Best wishes

v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 


Could you please mark the proper answer as solution or share the solution if it's convenient for you? That will be a big help to the others.

 

Best Regards!
Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Related documentations: https://msdn.microsoft.com/en-us/library/mt186368.aspx  and  https://msdn.microsoft.com/en-US/library/mt267542.aspx.

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

use "try....otherwise".

 

try <some code hear that may result in an error> otherwise  <run this code in case of error>

 

note that try and otherwise are NOT capitalized.  Also, no commas are needed.

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.