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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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