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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
Lenihan
Helper III
Helper III

Using Datediff but date and time data split

Hi, 

I had split my date/time columns for some calculated columns earlier, but, now, I've been asked to calculate difference between two dates, and for this I need both date and time. Is this possible to use datediff without having to rejoin these values back? I need to determine if a close date happens within 24 hours of the open date - so need to know both days and hours.  Is it possible in one formula to create a calculated column to determine the real # of hours between 4 columns?  (1. date and time fields when opened, and 2. date and time fields when closed)?

Thanks, 

Rob

1 ACCEPTED SOLUTION
jthomson
Solution Sage
Solution Sage

I woulodn't have thought you'd have need to rejoin anything - the only time you need to be concerned about the time is if the start and end dates are precisely one day apart. Just go for a comparison like:

 

 

if (end date - start date) >=2 then "not within 24 hours", else

if (end date - start date) = 1 and (end time > start time) then "not within 24 hours" else "within 24 hours"

View solution in original post

2 REPLIES 2
jthomson
Solution Sage
Solution Sage

I woulodn't have thought you'd have need to rejoin anything - the only time you need to be concerned about the time is if the start and end dates are precisely one day apart. Just go for a comparison like:

 

 

if (end date - start date) >=2 then "not within 24 hours", else

if (end date - start date) = 1 and (end time > start time) then "not within 24 hours" else "within 24 hours"

That makes total sense.. I'll give that a try when I'm done meetings today and see if it comes out right.

Thanks!

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.