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
AI14
Helper III
Helper III

adjust if formula to look at relative date in date/time

Hi

 

how can i make my date of my date/time column relative to today?

i want to avoid going into my data everyday and changing the date

 

= Table.AddColumn(#"Filtered Rows", "AM/PM", each if [ST] <= #datetime(2023, 1, 20, 13, 50, 0) then "AM" else "PM")

ST  
21/01/2023 04:30:00 AM
21/01/2023 20:30:00 PM
21/01/2023 06:30:00 AM
21/01/2023 14:30:00 PM
21/01/2023 13:30:00 AM
1 ACCEPTED SOLUTION

Hi,

In that case you can add the time like this: 

ValtteriN_0-1674304372199.png

newDate = Date.From(DateTime.LocalNow()) & Time.FromText("13:50:00pm"),

next_step = Table.AddColumn(#"Replaced Value", "AM/PM", each if [ST] <= newDate then "AM" else "PM")








Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ValtteriN
Super User
Super User

Hi,

Try using DateTime.LocalNow() function.

E.g.

ValtteriN_0-1674298455771.png

= Table.AddColumn(#"Replaced Value", "AM/PM", each if [ST] <= DateTime.LocalNow() then "AM" else "PM")

I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!

My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




hi,

 

thanks for reply.

 

i need the time 13:50 to be fixed - AM will always be below 13:50 and PM after.

kr

 

Hi,

In that case you can add the time like this: 

ValtteriN_0-1674304372199.png

newDate = Date.From(DateTime.LocalNow()) & Time.FromText("13:50:00pm"),

next_step = Table.AddColumn(#"Replaced Value", "AM/PM", each if [ST] <= newDate then "AM" else "PM")








Did I answer your question? Mark my post as a solution!

Proud to be a 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.

Top Solution Authors