<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Working Hours Between two date/time fields in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4179364#M166064</link>
    <description>&lt;P&gt;Hey lbendlin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I added Now() to the blank field and this worked well.&lt;BR /&gt;&lt;BR /&gt;However, now I observed the root of the issue, I have a few instances were the created date is later than the assigned date, I'm not sure why this would have occured.&lt;BR /&gt;&lt;BR /&gt;But, do you have any recommendations to the script to exlucde these instances?&lt;/P&gt;</description>
    <pubDate>Fri, 27 Sep 2024 01:20:41 GMT</pubDate>
    <dc:creator>Keston</dc:creator>
    <dc:date>2024-09-27T01:20:41Z</dc:date>
    <item>
      <title>Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139361#M164441</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seeking the assistance of the forum, I have two date/time fields in the following format and the following script to calculate the working hours between 8 - 1700 excluding weekend.&amp;nbsp;The script is calculating same day correctly however, if the dates spans between multiple days the hours are incorrect as see below.&lt;BR /&gt;&lt;BR /&gt;Can someone help me modify this script or provide a solution for me? I'm really struggling here to get the working hours.&lt;BR /&gt;&lt;BR /&gt;Same day calculation&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Mutiple days&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Script&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WorkingHoursDuration =&lt;BR /&gt;VAR StartDateTime = [date/time]&lt;BR /&gt;VAR EndDateTime = [date/time]&lt;/P&gt;&lt;P&gt;-- Define working hours&lt;BR /&gt;VAR StartOfWorkday = TIME(8, 0, 0)&lt;BR /&gt;VAR EndOfWorkday = TIME(17, 0, 0)&lt;/P&gt;&lt;P&gt;-- Helper function to calculate working hours in a given interval&lt;BR /&gt;VAR CalculateWorkingHoursInInterval =&lt;BR /&gt;VAR IntervalStart = MAX(DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + StartOfWorkday, StartDateTime)&lt;BR /&gt;VAR IntervalEnd = MIN(DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + EndOfWorkday, EndDateTime)&lt;BR /&gt;RETURN&lt;BR /&gt;IF (&lt;BR /&gt;IntervalEnd &amp;gt; IntervalStart,&lt;BR /&gt;DATEDIFF(IntervalStart, IntervalEnd, MINUTE) / 60.0,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-- Adjust start and end times if they fall outside working hours&lt;BR /&gt;VAR AdjustedStartTime =&lt;BR /&gt;IF (&lt;BR /&gt;WEEKDAY(StartDateTime, 2) &amp;gt; 5 || StartDateTime &amp;lt; DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + StartOfWorkday,&lt;BR /&gt;DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + StartOfWorkday,&lt;BR /&gt;IF (&lt;BR /&gt;StartDateTime &amp;gt; DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + EndOfWorkday,&lt;BR /&gt;DATE(YEAR(StartDateTime), MONTH(StartDateTime), DAY(StartDateTime)) + EndOfWorkday,&lt;BR /&gt;StartDateTime&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR AdjustedEndTime =&lt;BR /&gt;IF (&lt;BR /&gt;WEEKDAY(EndDateTime, 2) &amp;gt; 5 || EndDateTime &amp;gt; DATE(YEAR(EndDateTime), MONTH(EndDateTime), DAY(EndDateTime)) + EndOfWorkday,&lt;BR /&gt;DATE(YEAR(EndDateTime), MONTH(EndDateTime), DAY(EndDateTime)) + EndOfWorkday,&lt;BR /&gt;IF (&lt;BR /&gt;EndDateTime &amp;lt; DATE(YEAR(EndDateTime), MONTH(EndDateTime), DAY(EndDateTime)) + StartOfWorkday,&lt;BR /&gt;DATE(YEAR(EndDateTime), MONTH(EndDateTime), DAY(EndDateTime)) + StartOfWorkday,&lt;BR /&gt;EndDateTime&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-- Calculate working hours if the interval is within the same day&lt;BR /&gt;VAR SameDayHours =&lt;BR /&gt;IF (&lt;BR /&gt;DATEVALUE(AdjustedStartTime) = DATEVALUE(AdjustedEndTime),&lt;/P&gt;&lt;P&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-- Calculate working hours for full working days between start and end dates&lt;BR /&gt;VAR FullDaysStart = DATE(YEAR(AdjustedStartTime), MONTH(AdjustedStartTime), DAY(AdjustedStartTime)) + 1&lt;BR /&gt;VAR FullDaysEnd = DATE(YEAR(AdjustedEndTime), MONTH(AdjustedEndTime), DAY(AdjustedEndTime)) - 1&lt;/P&gt;&lt;P&gt;VAR FullDaysHours =&lt;BR /&gt;IF (&lt;BR /&gt;FullDaysStart &amp;lt;= FullDaysEnd,&lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUMX (&lt;BR /&gt;FILTER (&lt;BR /&gt;CALENDAR (FullDaysStart, FullDaysEnd),&lt;BR /&gt;WEEKDAY([Date], 2) &amp;lt;= 5&lt;BR /&gt;),&lt;BR /&gt;9&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-- Calculate working hours for the start and end days&lt;BR /&gt;VAR StartDayHours =&lt;BR /&gt;IF (&lt;BR /&gt;DATEVALUE(AdjustedStartTime) &amp;lt; DATE(YEAR(AdjustedStartTime), MONTH(AdjustedStartTime), DAY(AdjustedStartTime)) + EndOfWorkday,&lt;BR /&gt;VAR IntervalStart = MAX(StartOfWorkday, AdjustedStartTime)&lt;BR /&gt;VAR IntervalEnd = DATE(YEAR(AdjustedStartTime), MONTH(AdjustedStartTime), DAY(AdjustedStartTime)) + EndOfWorkday&lt;BR /&gt;RETURN&lt;BR /&gt;CalculateWorkingHoursInInterval,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR EndDayHours =&lt;BR /&gt;IF (&lt;BR /&gt;DATEVALUE(AdjustedEndTime) &amp;gt; DATE(YEAR(AdjustedEndTime), MONTH(AdjustedEndTime), DAY(AdjustedEndTime)) + StartOfWorkday,&lt;BR /&gt;VAR IntervalStart = DATE(YEAR(AdjustedEndTime), MONTH(AdjustedEndTime), DAY(AdjustedEndTime)) + StartOfWorkday&lt;BR /&gt;VAR IntervalEnd = MIN(EndOfWorkday, AdjustedEndTime)&lt;BR /&gt;RETURN&lt;BR /&gt;CalculateWorkingHoursInInterval,&lt;BR /&gt;0&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;-- Total working hours&lt;BR /&gt;VAR TotalWorkingHours =&lt;BR /&gt;SameDayHours + FullDaysHours + StartDayHours + EndDayHours&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;MAX(0, TotalWorkingHours)&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 17:31:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139361#M164441</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-08T17:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139395#M164447</link>
      <description>&lt;P&gt;There's no need for any of this, you can use a simple INTERSECT.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BUT - only if you clearly define what "working hours"&amp;nbsp; means&amp;nbsp; - which days, which time zones etc.&amp;nbsp; Do you have that information?&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 20:09:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139395#M164447</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-08T20:09:41Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139398#M164448</link>
      <description>&lt;P&gt;I have the details, so working hours is 8 - 1700 GMT-4 Monday to Fridday.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 20:14:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139398#M164448</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-08T20:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139405#M164450</link>
      <description>&lt;P&gt;Good.&amp;nbsp; What is your required granularity level - half hour slots ok, or does it need to go down to minute level?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please provide a couple of sample intervals in usable format, not as a screenshot.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 20:37:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139405#M164450</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-08T20:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139406#M164451</link>
      <description>&lt;P&gt;Down to the minute will be ideal.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 20:40:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139406#M164451</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-08T20:40:24Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139427#M164458</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;This is immutable data so I created a calculated column.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Work hours = 
var workingdays = FILTER(CALENDAR([Created],[Assigned]),WEEKDAY([Date],2)&amp;lt;6)
var possibleworkingminutes = SELECTCOLUMNS(GENERATE(workingdays,GENERATESERIES([Date]*1440+480,[Date]*1440+1019)),"Value",[Value])
var fullinterval = GENERATESERIES(ROUNDDOWN([Created]*1440,0),ROUNDDOWN([Assigned]*1440,0)-1)
var actualworkingminutes = INTERSECT(possibleworkingminutes,fullinterval)
RETURN ROUNDDOWN(countrows(actualworkingminutes)/60,0) &amp;amp; Format(countrows(actualworkingminutes)/1440,":nn")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 21:59:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139427#M164458</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-08T21:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139470#M164460</link>
      <description>&lt;P&gt;Thank you for this but for some strange reason I'm receiving the folowing error.&lt;BR /&gt;&lt;BR /&gt;The start date in Calendar function can not be later than the end date.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 23:30:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139470#M164460</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-08T23:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139475#M164462</link>
      <description>&lt;P&gt;You and I have different date formats. You use dd/mm/yyyy and I use mm/dd/yyyy.&amp;nbsp; Neither are good formats. Best to use ISO-8601 to avoid ambiguity.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Sep 2024 23:40:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4139475#M164462</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-08T23:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4143391#M164677</link>
      <description>&lt;P&gt;Hey lbendlin&lt;BR /&gt;&lt;BR /&gt;I'm still receiving this error: &lt;SPAN&gt;The start date in Calendar function can not be later than the end date. Is it possible to update the script to probably exclude these instances?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 17:13:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4143391#M164677</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-10T17:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4143399#M164678</link>
      <description>&lt;P&gt;Please provide sample data that covers your issue or question &lt;STRONG&gt;completely&lt;/STRONG&gt;, in a &lt;STRONG&gt;usable&lt;/STRONG&gt; format (not as a screenshot).&lt;BR /&gt;&lt;BR /&gt;Do not include sensitive information or anything not related to the issue or question. &lt;BR /&gt;&lt;BR /&gt;If you are unsure how to upload data please refer to &lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;Please show the expected outcome based on the sample data you provided. &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Sep 2024 17:20:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4143399#M164678</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-10T17:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4171848#M165709</link>
      <description>&lt;P&gt;Hi lbendlin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I found an issue with my data, it appears that the assigned time field may be blank at times. I also simulated with the&amp;nbsp;&lt;SPAN&gt;Work hours.pbix. How can we take this into consideration?&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;Thank you for your support.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 23:43:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4171848#M165709</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-24T23:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4171873#M165710</link>
      <description>&lt;P&gt;You can choose to ignore these rows, or replace the blanks with an appropriate date. Not sure if "Today"&amp;nbsp; is appropriate for this?&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2024 23:51:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4171873#M165710</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-24T23:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4179364#M166064</link>
      <description>&lt;P&gt;Hey lbendlin,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I added Now() to the blank field and this worked well.&lt;BR /&gt;&lt;BR /&gt;However, now I observed the root of the issue, I have a few instances were the created date is later than the assigned date, I'm not sure why this would have occured.&lt;BR /&gt;&lt;BR /&gt;But, do you have any recommendations to the script to exlucde these instances?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 01:20:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4179364#M166064</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-27T01:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4182728#M166139</link>
      <description>&lt;P&gt;You could use ABS() to always get a positive duration.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 10:36:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4182728#M166139</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-27T10:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4184556#M166173</link>
      <description>&lt;P&gt;Ok noted, just to be clear, I should replace CALENDAR() with ABS()?&lt;/P&gt;</description>
      <pubDate>Fri, 27 Sep 2024 14:58:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4184556#M166173</guid>
      <dc:creator>Keston</dc:creator>
      <dc:date>2024-09-27T14:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: Working Hours Between two date/time fields</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4184595#M166175</link>
      <description>&lt;LI-CODE lang="markup"&gt;var workingdays = FILTER(CALENDAR(MIN([Created],[Assigned]),MAX([Created],[Assigned])),WEEKDAY([Date],2)&amp;lt;6)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 27 Sep 2024 15:04:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Working-Hours-Between-two-date-time-fields/m-p/4184595#M166175</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2024-09-27T15:04:15Z</dc:date>
    </item>
  </channel>
</rss>

