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 you
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.
2 Replies
- Uzi2019Community 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.
- AllanBercesPost Prodigy
Hi Uzi2019
Thank you very much.