Forum Discussion
AllanBerces
2 years agoPost Prodigy
Visual Base from Current Date
Hi Good day Can anyone, pls need help how can can dislay in Visual Card the current %Daily Plan and %Actual Plan. %Daily Plan - Measure %Actual Plan - Measure Date - Date Table. Thank ...
- 2 years ago
Hi AllanBerces
Just take same table but write a column dax for Today() function.
Today= if('Test1'[Date]=TODAY(),"Today",""&Test1[Date])and take this column value in visual filter and select only today.
I hpe this would resolved you issue.
Uzi2019
2 years agoCommunity Champion
Hi AllanBerces
Just take same table but write a column dax for Today() function.
Today= if('Test1'[Date]=TODAY(),"Today",""&Test1[Date])
and take this column value in visual filter and select only today.
I hpe this would resolved you issue.
- AllanBerces2 years agoPost Prodigy
Hi Uzi2019
Thank you very much.