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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.