Forum Discussion

DynamicsHS's avatar
DynamicsHS
Helper II
3 years ago
Solved

How to replace a value with todays date ?

Hi,    I have a list of dates and some of them are presenting as '31/12/2154'. How can I change those rows listed as '31/12/2154' to todays date?   So that every time it refreshes, it shows today...
  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi DynamicsHS ,

    Change the measure.

    measure = 
    IF ( MAX ( 'Table'[date] ) = DATE(2154,12,31), TODAY (), MAX('Table'[date]) )

    If I have misunderstood your meaing, please provide more details.

     

    Best Regards

    Community Support Team _ Polly

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.