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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

if statement and early exit in m function

OK, so say I make a simple function (in the advanced editor):

(test1 as text)=>
let
    if test1 = "yes" then Source = "OK" else Source = "Dang"
in
    Source

This has an error of Token Identifier expeted for the if. What am I doing wrong??

 

The other thing I was wondering, is if test1 is not equal to "yes", instead of setting source as "Dang", am I able to exit the function with a text string as an error? In most programming languages you just return a value there and it will stop processing the rest of the function, but this doesn't seem an option in Power Query.

1 ACCEPTED SOLUTION
LivioLanzo
Solution Sage
Solution Sage

Hi @Anonymous  - 

 

the right synthax is:

 

(test1 as text)=>
let
    Source = if test1 = "yes" then "OK" else "Dang"
in
    Source

 

for the other question, it depends on what else have in your query, is the function the only code?

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

View solution in original post

2 REPLIES 2
LivioLanzo
Solution Sage
Solution Sage

Hi @Anonymous  - 

 

the right synthax is:

 

(test1 as text)=>
let
    Source = if test1 = "yes" then "OK" else "Dang"
in
    Source

 

for the other question, it depends on what else have in your query, is the function the only code?

 


 


Did I answer your question correctly? Mark my answer as a solution!


Proud to be a Datanaut!  

Anonymous
Not applicable


@LivioLanzo wrote:

it depends on what else have in your query, is the function the only code?


This function would be called from another function. However, it is only this function I want to exit, and just return an error string. The parent function should continue to process and will just display the error.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.