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
sgannon1
Frequent Visitor

'Token then expected' error

Hi all, 

 

Can anybody please tell me what 'token then expected' error means?

I have created the below formula (I am trying to allocated fiscal year to each month), but obviously I am doing something wrong.

 

 

 

Capture.PNG

1 ACCEPTED SOLUTION
KHorseman
Community Champion
Community Champion

You're using DAX syntax to write a function in M. The query editor uses a different language. It should be

 

=if [Month] > 9 then [Year] + 1 else [Year]





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

Proud to be a Super User!




View solution in original post

4 REPLIES 4
kcantor
Community Champion
Community Champion

This is referring to the proper set up of the if statement. It is not like excel. It needs a 'then' and and 'else' instead of commas.

It should be:

=if [Month]>9 then [year] + 1 else [year]

If in PQL follws this format:

= if <Logical_test> then <result> else <alternate_result>





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

Proud to be a Super User!




Anonymous
Not applicable

@kcantor  or @smpa01 See below If then error for custom column. It is only erroring out the first then- please advise how to fix this formula. thank you

If then Error.JPG

Anonymous
Not applicable

I figured it out nevermind. Once I removed all the ) before each of the thens the formula was accepted. Wish the error highlighted the ) parenthesis --calling it a token Then error is misleading bc the then is already there.

KHorseman
Community Champion
Community Champion

You're using DAX syntax to write a function in M. The query editor uses a different language. It should be

 

=if [Month] > 9 then [Year] + 1 else [Year]





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

Proud to be a Super User!




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.