Forum Discussion
fabricuser123
2 years agoFrequent Visitor
DataFlow Gen2 is taking forever to refresh with a custom function
I have a custom function that works well in Power BI Desktop. Using the customer function I am trying to generate monthly records in between two given dates. I am trying to move the power query to fa...
lbendlin
2 years agoSuper User
Maybe try something simpler?
= (From as date, To as date) => List.Generate(()=>From,each _ <= To, each Date.AddMonths(_,1))
fabricuser123
2 years agoFrequent Visitor
Tried this but no luck. Same issue. Runs for 10 mins and timeout.