Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hello everyone,
I would like your urgent help.
I would like to calculate the time of night work (21:00:00 - 05:00:00) between entry (date & time Start) and (date & time End) located.
example:
Date & time start | date & time end | Time between 21:00:00 and 05:00:00 |
10/02/2023 16:00:00 | 10/02/2023 23:00:00 | 02:00:00 |
11/02/2023 23:00:00 | 12/02/2023 08:00:00 | 06:00:00 |
15/02/2023 14:00:00 | 15/02/2023 23:30:00 | 02:30:00 |
thank you in advance for your help.
Solved! Go to Solution.
@Mediviz you can do something like this
Measure =
VAR __start =
MAX ( 'Table'[Date & time start] )
VAR __end =
MAX ( 'Table'[Date & time end] )
VAR hardStart =
DATEVALUE ( __start ) + TIME ( 21, 00, 00 )
VAR modStart =
IF ( hardStart > __start, hardStart, __start )
VAR hardEnd =
DATEVALUE ( __start ) + 1 // since night shift, the end date will always flow +1 from start
+ TIME ( 05, 00, 00 )
VAR modEnd =
IF ( hardEnd < __end, hardEnd, __end )
RETURN
modEnd - modStart
PFA
@Mediviz you can do something like this
Measure =
VAR __start =
MAX ( 'Table'[Date & time start] )
VAR __end =
MAX ( 'Table'[Date & time end] )
VAR hardStart =
DATEVALUE ( __start ) + TIME ( 21, 00, 00 )
VAR modStart =
IF ( hardStart > __start, hardStart, __start )
VAR hardEnd =
DATEVALUE ( __start ) + 1 // since night shift, the end date will always flow +1 from start
+ TIME ( 05, 00, 00 )
VAR modEnd =
IF ( hardEnd < __end, hardEnd, __end )
RETURN
modEnd - modStart
PFA
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
71 | |
55 | |
37 | |
31 |
User | Count |
---|---|
87 | |
62 | |
61 | |
49 | |
45 |