Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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
Solved! Go to Solution.
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"
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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 39 | |
| 35 | |
| 23 |