<?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: Using DAX to calculate the total free hours between dates in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198216#M116166</link>
    <description>&lt;P&gt;Okay the formula definitely is not giving errors anymore however its giving the same value for every row in the table instead of each row their own calculated value. im not entirely sure why but some days its only 1 hour of dental leave yet it gives 1067 here&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 20 Apr 2023 14:05:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-04-20T14:05:48Z</dc:date>
    <item>
      <title>Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197535#M116128</link>
      <description>&lt;P&gt;Good day to anyone who reads this,&lt;BR /&gt;&lt;BR /&gt;I am a student taking my first steps with dax and power BI for a Data analyst internship and i've ran into a little problem I'm currently trying to figure out how to use Dax to calculate the amount of time someone got off work. These hours are calculated from the days between a start date and end date with another collumn showing how many hours per day they had off work(see excel recreation below)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I've been looking around how to get this to work with DAX and I've tried to use the following code as a first step to count the amount of days between the two dates but got no results.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Days =

DATEDIFF(
	SELECTEDVALUE( TT_EMP_BOOK[TT_FROMDATE]),
	SELECTEDVALUE( TT_EMP_BOOK[TT_TODATE]),
	Day(
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've also tried looking on the DAX pages provided by microsoft temselves to see what syntax I might be putting down wrong but can't seem to figure it out its all still quite new to me.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;In the end what I hope to achieve is calculating the following and putting it in a new column&lt;BR /&gt;Days between 01/01/2023 - 03/01/2023 = 3 * hours per day 8 = 24 hours in total&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;hopefully someone can lend me a hand and if so thank you in advance.&lt;BR /&gt;&lt;BR /&gt;Edit note: I am using DAX studio 3.0.7 to build my DAX code before using it&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 09:49:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197535#M116128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T09:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197789#M116138</link>
      <description>&lt;P&gt;Total Hours =&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;VAR&lt;/SPAN&gt; _hoursPerDay = &lt;SPAN&gt;'table'[hoursperday]&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;SPAN&gt;VAR&lt;/SPAN&gt; _numberOfDays = &lt;SPAN&gt;DATEDIFF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'table'[start date]&lt;/SPAN&gt;, &lt;SPAN&gt;'table'[end date]&lt;/SPAN&gt;, &lt;SPAN&gt;DAY&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Return&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;_hoursPerDay * _numberOfDays&lt;BR /&gt;&lt;BR /&gt;Give this a try.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another potential solution:&lt;BR /&gt;Measure 1: Days off =&amp;nbsp;&lt;SPAN&gt;DATEDIFF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'table'[start date]&lt;/SPAN&gt;, &lt;SPAN&gt;'table'[end date]&lt;/SPAN&gt;, &lt;SPAN&gt;DAY&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Measure 2: 'table'[days off] * hoursperday&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;then put these into your table. Let me know if you eed anything else or if this works. If it does please accept as solution&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 10:52:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197789#M116138</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T10:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197874#M116141</link>
      <description>&lt;P&gt;I'm experiencing an issue where It doesn't want to recognise the column names with the code it seems to find the table quite alright but not the columns I made sure that they are are typed correct and everything.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 12:00:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3197874#M116141</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T12:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198029#M116147</link>
      <description>&lt;P&gt;No problem! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; could you send a screenshot of the error message and your dax code?&lt;BR /&gt;Cheers!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 12:51:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198029#M116147</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T12:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198041#M116148</link>
      <description>&lt;P&gt;Measure 1: Days off =&amp;nbsp;&lt;SPAN&gt;DATEDIFF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'table'[start date]&lt;/SPAN&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;'table'[end date]&lt;/SPAN&gt;,&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;DAY&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Measure 2: hoursperday = SUM('table'[hoursperday]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Measure 3: [days off] * hoursperday&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could potentially be a solution, but still send your code so i can have a look &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 12:53:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198041#M116148</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T12:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198055#M116149</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Here it is! also the error states it cannot get a single value I did try to look into this but I dont need all the rows to be summed together as they all have different values that should be displayed. I wasn't sure of how to do that however I hope this helps you understand the issue &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; thanks in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 12:56:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198055#M116149</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T12:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198159#M116155</link>
      <description>&lt;P&gt;so it's saying that because we've referenced a column and not specified which row, so power bi is like "okay you want a date from this column, but which one?". Normally we can specify we want the MIN date by MIN('table'[Date]) or MAX('table'[date]) but in this case i'd say it might be possible to get the result you want by wrapping the table names and column names in MIN() or MAX().&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If this doesn't work there's a more proper way we can try but give this a go.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 13:44:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198159#M116155</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T13:44:31Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198179#M116158</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I did put the MIN infront of them and even tried adding one of both but another error returns no matter what variation I put in hopefully its not a mistake I made by missunderstanding. I hope this is what you meant but so far it isn't working just yet.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 13:49:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198179#M116158</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T13:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198182#M116159</link>
      <description>&lt;P&gt;You just need to add ending brackets for the min functions &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Have a look, if you can't figure it out paste the code here so i can write it for you&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 13:51:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198182#M116159</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T13:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198183#M116160</link>
      <description>&lt;P&gt;Sorry, add a closing bracket to the MAX( function i mean!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 13:52:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198183#M116160</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T13:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198197#M116163</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Mabey im just being stupid or well lets say inexperienced &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; but i they have they respective brackets already I think.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I'll still paste the code down here since I'm probably just not aware of how to do it properly&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Hours = 
    VAR _hoursPerDay = MIN('TT_EMP_BOOK'[TT_ENDTIME])
    VAR _numberOfDays = DATEDIFF(MIN('TT_EMP_BOOK'[TT_FROMDATE]), MAX('TT_EMP_BOOK'[TT_TODATE], DAY))

Return
    _hoursPerDay * _numberOfDays&lt;/LI-CODE&gt;&lt;P&gt;Also just wanna say thank you for taking the time to help and explain things really appreciated so far!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 13:56:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198197#M116163</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T13:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198216#M116166</link>
      <description>&lt;P&gt;Okay the formula definitely is not giving errors anymore however its giving the same value for every row in the table instead of each row their own calculated value. im not entirely sure why but some days its only 1 hour of dental leave yet it gives 1067 here&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 14:05:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198216#M116166</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T14:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198322#M116175</link>
      <description>&lt;P&gt;This is because we are using the min value from the whole table, so this hasn't worked. Apologies. Here's a revised idea to get this to work:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;daysOff =

DATEDIFF(
	 TT_EMP_BOOK[TT_FROMDATE],
	 TT_EMP_BOOK[TT_TODATE],
	Day
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is your days between calculated column.&lt;BR /&gt;&lt;BR /&gt;1. Create new column again&lt;/P&gt;&lt;P&gt;2. Enter this code in the column:&lt;BR /&gt;answer = ProductX('table', daysOff * hrsperday)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;let me know, sorry for all the confusion, i think i overcomplicated this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: to correct code&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 08:19:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198322#M116175</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T08:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198339#M116176</link>
      <description>&lt;P&gt;Is there an issue with simply doing this in a calculated column:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;test = [daysOff] * 'table'[hrsperday]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Apr 2023 14:48:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3198339#M116176</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-20T14:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199406#M116235</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I did try this before and for some reason it will not accept DAY as a vaid argument eventhough it is one? the second solution you posted containing&amp;nbsp;&lt;SPAN&gt;test = [daysOff] * 'table'[hrsperday] could work however the issue is that there is no days off column yet.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit: This is what the column shows by the way&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 06:34:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199406#M116235</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T06:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199515#M116245</link>
      <description>&lt;P&gt;DAY() shouldn't have brackets in third argument. just put DAY.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 07:33:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199515#M116245</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T07:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199535#M116246</link>
      <description>&lt;P&gt;Also perhaps I'm wrong but I think the DAY statement here would return what day number of the month it is instead of the amount of days between the start and end date although I could be wrong?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 07:45:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199535#M116246</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T07:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199539#M116247</link>
      <description>&lt;P&gt;DAY() returns the day number from a date&lt;BR /&gt;DAY is a parameter option in the DATEDIFF function &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; So yes you're correct. Did you try the solution?&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 07:48:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199539#M116247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T07:48:22Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199557#M116249</link>
      <description>&lt;P&gt;Yes I did you can find it in msg 14! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; It didn't wanna work unless I'm doing something wrong here.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 08:05:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199557#M116249</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T08:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Using DAX to calculate the total free hours between dates</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199563#M116250</link>
      <description>&lt;P&gt;Yeah there's a bracket after DAY&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;so the end of your code looks like this:&lt;/P&gt;&lt;P&gt;DAY(&lt;BR /&gt;))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it should look like this:&lt;/P&gt;&lt;P&gt;DAY&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 08:07:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Using-DAX-to-calculate-the-total-free-hours-between-dates/m-p/3199563#M116250</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-21T08:07:35Z</dc:date>
    </item>
  </channel>
</rss>

