Forum Discussion
theusorla
4 years agoFrequent Visitor
Dependency cycle was detected
Estou tentando salvar meu fuxo de dados porem apresenta esse erro: tenhos as seguintes funções: fn_loopChamados let Fonte = ( optional MaxPag as number, ...
lbendlin
Super User
4 years agoYour two functions call each other.
...
TabelaAtual =
try fn_ConsultaChamado(Loop) //1
otherwise null,
...
Alsio note that Power Query uses List.Generate or recursive function calls to do "looping". You can refactor your query accordingly to avoid the circular dependency.