Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Preciso criar uma tabela dinamicamente. O trecho abaixo mostra um pouco do meu problema.
Tabela =
var dataselecionada = DATE(2021,5,1)//SELECTEDVALUE('Sim1 Fornecimento'[Date])
return
FILTER(All(Calendario), Calendario[Date] = dataselecionada)
Colocando o valor de dalaselecionada como uma constante o resultado filtra corretamente.
Tentando pegar o valor a partir da seleção do campo (parte comentada), a variável vem nula.
a mesma variavel em um cartão exibe o valor seelcionado corretamente.
Solved! Go to Solution.
Apologies for not answering in Portuguese.
the problem is that calculated tables cannot be dynamic. They are created when the model is loaded and remain static.
you will need to consider using a measure where you can create (dynamic) virtual tables for calculations
Proud to be a Super User!
Paul on Linkedin.
Apologies for not answering in Portuguese.
the problem is that calculated tables cannot be dynamic. They are created when the model is loaded and remain static.
you will need to consider using a measure where you can create (dynamic) virtual tables for calculations
Proud to be a Super User!
Paul on Linkedin.