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

Recursive Functions in online versions of Power Query

I have a recursive power query custom function that works as expected in Power BI desktop.  When I try to use the same M code as part of creating a dataflow or datamart I receive an error message stating "Expression.Error: A cyclic reference was encountered during evaluation."  Are recursive functions not supported in the online versions of power query?

 

For reference the function is below where date is a scalar date value and holidays is a list of dates.

******************************************

let
    Source = (date as date,holidays as list) =>
   
    let
    adjusted_date =
   
        if Date.DayOfWeek(date)=0
        then Date.AddDays(date,1)
        else if Date.DayOfWeek(date)=5 then Date.AddDays(date,3)
        else if Date.DayOfWeek(date)=6 then Date.AddDays(date,2)
        else Date.AddDays(date,1)
    ,
   
holiday_adjusted=
    if List.Contains(holidays,adjusted_date) then @liquidity_date(adjusted_date,holidays)
    else adjusted_date
in  
    holiday_adjusted
in
    Source

 

 

 

1 ACCEPTED SOLUTION
artemus
Employee
Employee

This appears to be mostly a visual bug, you can still invoke the function as normal. You can also wrap it in a 

let liquidity_date_fn = <code> in liquidity_date_fn

and just use @liquidity_date_fn when you call the function

View solution in original post

2 REPLIES 2
artemus
Employee
Employee

This appears to be mostly a visual bug, you can still invoke the function as normal. You can also wrap it in a 

let liquidity_date_fn = <code> in liquidity_date_fn

and just use @liquidity_date_fn when you call the function

This works.  Thank you.

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.

Top Solution Authors
Top Kudoed Authors