Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DynamicsHS
Helper II
Helper II

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 todays new date. 

 

Thank you,

Henry

1 ACCEPTED SOLUTION

Hi @DynamicsHS ,

Change the measure.

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

vpollymsft_0-1668403278198.png

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.

View solution in original post

6 REPLIES 6
v-rongtiep-msft
Community Support
Community Support

Hi @DynamicsHS ,

Please have a try.

Create a measure.

measure =
IF ( MAX ( table[date] ) = "31/12/2154", TODAY (), table[date] )

  

Or add a custom column.

if [date] = "31/12/2154" then DateTime.LocalNow() else [date]

vpollymsft_0-1668393720184.png

 

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.

Hi @v-rongtiep-msft , 

 

I am getting this error:

DynamicsHS_0-1668402766630.png

the date is formatted as a date and not text?

Hi @DynamicsHS ,

Change the measure.

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

vpollymsft_0-1668403278198.png

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.

Hi @v-rongtiep-msft , 

 

This has worked but values (dates) that are not 31/12/2154  are coming up as todays date? instead of showing their orginal date? e.g. 27/10/2021 is showing as todays date and not just 27/10/2021

just needed to change the dates around to 31, 12,2154 and its worked. Thank you

amitchandak
Super User
Super User

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.