Forum Discussion

rafacabral's avatar
rafacabral
Regular Visitor
5 years ago
Solved

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.

  • 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

1 Reply

  • PaulDBrown's avatar
    PaulDBrown
    Icon for Community Champion rankCommunity 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