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
tdisalvo
New Member

I need to subtract one day if the time is between 12AM and 2AM

I have a Time field =IC_HistoryProducts[Time]

And a Date field= IC_HistoryProducts[TransactionDate]

 

What I need is to subtract 1 day from the date field if the time field is between 12AM~2AM

 

This is driving me nuts and could use some help

1 ACCEPTED SOLUTION
jthomson
Solution Sage
Solution Sage

What does this do:

 

newcolumn = if(hour(IC_HistoryProducts[Time])<2, previousday(IC_HistoryProducts[TransactionDate]),IC_HistoryProducts[TransactionDate])

View solution in original post

2 REPLIES 2
Pulkit
Resolver I
Resolver I

Hi,

 

Try

new column = IF([Timecolumn]>12:00AM,IF([Timecolumn]<2:00AM,DATEADD([datecolumn],-1,date),[datecolumn])

 

I am not sure if this is it so let me know if it works.

jthomson
Solution Sage
Solution Sage

What does this do:

 

newcolumn = if(hour(IC_HistoryProducts[Time])<2, previousday(IC_HistoryProducts[TransactionDate]),IC_HistoryProducts[TransactionDate])

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