Forum Discussion

AllanBerces's avatar
AllanBerces
Post Prodigy
2 years ago
Solved

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

  • Uzi2019's avatar
    Uzi2019
    Community 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.