Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
rafacabral
Regular Visitor

Tabela Virtual dinamica

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.

1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

@rafacabral 

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





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






View solution in original post

1 REPLY 1
PaulDBrown
Community Champion
Community Champion

@rafacabral 

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





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Top Solution Authors