Forum Discussion
Display time over 24 hours in Power BI
- 4 years ago
Thank you so much, Vijay. The formula worked perfectly
Hi Vijay,
This formula works perfectly except for some really do end on the same day
Is there any way to tell the formula that?
Here is what it looks like now using your amazing formula
The only problem if you see some are really starting at 6:30 am and ending on the same day shift at 4:30 pm
Thank again for helping me with this.
Much appreciated.
Here is a better look. For example, some really do start and end on the same shift
for example the start at 7:00:00 AM should still end on the same day 4/1/2021 at 8:00:00pm
also the 12:00 AM to 12:00: AM should all just remain as the same day
No time was really worked on these days
- Vijay_A_Verma4 years ago
Most Valuable Professional
Replacing End Date time with this formula will solve the problem
if [End]>=[Start] then [Date]&[End] else Date.AddDays([Date],1)&[End]