Forum Discussion
pedrostt8
2 years agoNew Member
dax
Boa tarde. Estou com um problema, tenho uma meta definida porém no mês que não tem realizado o visual fica em branco, tem alguma dax que eu faça para que quando não ter realizado ele preencha com...
- Anonymous2 years ago
Hi pedrostt8 ,
I create a table as you mentioned.
Then I create a measure and here is the DAX code.
Achieve = MAX('Table'[Achieve1])It shows Achieve is blank, so I create another measure.
Measure = IF('Table'[Achieve]=BLANK(),0,'Table'[Achieve])Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
Hi pedrostt8 ,
I create a table as you mentioned.
Then I create a measure and here is the DAX code.
Achieve = MAX('Table'[Achieve1])
It shows Achieve is blank, so I create another measure.
Measure = IF('Table'[Achieve]=BLANK(),0,'Table'[Achieve])
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- pedrostt82 years agoNew Member
Anonymous thank you very much have a good day !!!!