Forum Discussion
AllanBerces
Post Prodigy
2 years agoVisual 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
Community Champion
2 years agoHi 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 ago
Post Prodigy
Hi Uzi2019
Thank you very much.