<?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: DAX If Statement Based on Time via Direct Query in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2427008#M64487</link>
    <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, that works great!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really appreciate the time and effort you have taken to helping me&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 30 Mar 2022 13:26:15 GMT</pubDate>
    <dc:creator>hankmobley</dc:creator>
    <dc:date>2022-03-30T13:26:15Z</dc:date>
    <item>
      <title>DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419136#M63993</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Seeing as this is a DAX issue, I thought I would try my luck here with the DAX experts.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have an 'execution_time' column in the format below:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;What I would like is to create a new column which simply states "Day" if the time is between 7am-8:59pm, and "Night" if it's between 9pm-6:59am.&lt;/P&gt;&lt;P&gt;I found this formula which I thought could work for me, but when I tested it, it only returns "Night" under all conditions:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;And when I amended the formula to suit my needs, the new column doesn't bring up anything (blank):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Also, just to provide some background, I'm running data via Direct Query, so it doesn't allow me to change the 'execution_time' format by creating a new column in the desktop.&amp;nbsp; It looks like the FORMAT function is not supported by Direct Query?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I also tried changing the format &lt;SPAN&gt;by going to the Model view, clicking on the 'execution_time' column name and then under Properties, changing the format to Time only, but as you can see, this had no impact on the result:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Happy to provide more information if needed.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 11:06:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419136#M63993</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-26T11:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419155#M63994</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can store the time of the current row in a variable then use it in IF or SWITCH&lt;/P&gt;&lt;LI-CODE lang="php"&gt;AVR CurrentTime = 
	TIME ( 
		HOUR ( autofx_order_leg[execution_time] ), 
		MINUTE ( autofx_order_leg[execution_time] ), 
		SECOND ( autofx_order_leg[execution_time] )
	)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 26 Mar 2022 11:29:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419155#M63994</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419178#M63997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks for your reply.&amp;nbsp; I created a new column and added your formula, but I get the below error:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Also, I'm not sure what you mean by "...then use it in IF or SWITCH".&amp;nbsp; Sorry, PBI is relatively new to me and I'm still learning.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 12:03:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419178#M63997</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-26T12:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419179#M63998</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;No worries can you please share the formula you've used.&amp;nbsp;&lt;BR /&gt;My understanding that you wanted to create a calculated column not a measure. But again no worries it can be converted into a measure. Just paste your code in a reply and I will edit it for you&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 12:07:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419179#M63998</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T12:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419181#M63999</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I did provide screenshots above of the code I'm using, but I probably should have provided them in code form instead, sorry.&amp;nbsp; Also, I am trying to create a column with Day/Night, not a measure.&amp;nbsp; t's my understanding (although I could be wrong) that you can only use slicers on columns and not measures?&lt;/P&gt;&lt;P&gt;Here is the code I'm using to calculate Day/Night:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DayNight = 
IF (
    autofx_order_leg[execution_time] &amp;gt; TIMEVALUE("07:00 AM")
        &amp;amp;&amp;amp; autofx_order_leg[execution_time] &amp;lt;= TIMEVALUE("09:00 PM"),
        "Day",
    IF (
        autofx_order_leg[execution_time] &amp;gt; TIMEVALUE("09:00 PM")
            &amp;amp;&amp;amp; autofx_order_leg[execution_time] &amp;lt;= TIMEVALUE("07:00 AM"),
            "Night"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;As mentioned, this code doesn't bring anything up (blank).&amp;nbsp; To check this, I just opened up a new table that shows the 'execution_time' column next to the new 'Day/Night' column (screenshot below):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 12:20:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419181#M63999</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-26T12:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419187#M64001</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Try this for a calculated column&lt;/P&gt;&lt;LI-CODE lang="php"&gt;DayNight =
VAR CurrentTime =
    TIME ( HOUR ( autofx_order_leg[execution_time] ), MINUTE ( autofx_order_leg[execution_time] ), SECOND ( autofx_order_leg[execution_time] ) )
RETURN
    IF (
        CurrentTime &amp;gt; TIMEVALUE ( "07:00 AM" )
            &amp;amp;&amp;amp; CurrentTime &amp;lt;= TIMEVALUE ( "09:00 PM" ),
        "Day",
        "Night"
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 26 Mar 2022 12:44:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419187#M64001</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T12:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419190#M64002</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Thanks, but I"m still getting the same error message when I add your formula in a new column, and then use it in a visual (screenshot below):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Could it be the way the 'execution_time' column is formatted from DQ (screenshot below):&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 12:59:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419190#M64002</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-26T12:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419194#M64003</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok then try adding it as a measure. Use the following code&lt;/P&gt;&lt;LI-CODE lang="php"&gt;DayNight Measure =
MAXX (
    autofx_order_leg,
    VAR CurrentTime =
        TIME ( HOUR ( autofx_order_leg[execution_time] ), MINUTE ( autofx_order_leg[execution_time] ), SECOND ( autofx_order_leg[execution_time] ) )
    RETURN
        IF (
            CurrentTime &amp;gt; TIMEVALUE ( "07:00 AM" )
                &amp;amp;&amp;amp; CurrentTime &amp;lt;= TIMEVALUE ( "09:00 PM" ),
            "Day",
            "Night"
        )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 26 Mar 2022 13:11:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419194#M64003</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T13:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419209#M64006</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also make sure this is checked&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 13:48:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419209#M64006</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T13:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419215#M64009</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure does work on its own, but now I am not able to us the day/night data as part of my visuals that use slicers/filters.&amp;nbsp; If I'm not mistaken, only columns work with slicers/filters?&lt;/P&gt;&lt;P&gt;I also checked the DQ options, and I don't have the same option you are showing.&amp;nbsp; This is the only option I see under DQ:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Is there another workaround using DAX?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 13:54:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419215#M64009</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-26T13:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419238#M64016</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Apparently dq does not allow creating collumns baes on time. This resonable. &amp;nbsp;Best t I think we can work around that. &amp;nbsp;&lt;BR /&gt;Am not on my compter right now. Will get back to you on Monday morning. Apologies for that&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 14:24:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2419238#M64016</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-26T14:24:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2425782#M64421</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="367498" data-lia-user-login="hankmobley" class="lia-mention lia-mention-user"&gt;hankmobley&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Here is the complete solution&lt;BR /&gt;When using direct query, creating a calculated column based on time calculations is not allowed. Therefore, we can follow these steps to work around it&lt;BR /&gt;1. Create Day/Night measure based on time calculations&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;DayNightt Measure =
MAXX (
   autofxx_order_leg,
    VARCurrentTimee =
        TIME ( HOUR (autofxx_order_leg[execution_time] ), MINUTE (autofxx_order_leg[execution_time] ), SECOND (autofxx_order_leg[execution_time] ) )
    RETURN
        IF (
           CurrentTimee &amp;gt; TIMEVALUE ( "07:00 AM" )
                &amp;amp;&amp;amp;CurrentTimee &amp;lt;= TIMEVALUE ( "09:00 PM" ),
            "Day",
            "Night"
        )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. C&lt;SPAN&gt;reate a disconnected slicer table:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;Slicer Day/Night = SELECTCOLUMNS ( { "Day", "Night" }, "Day/Night", [Value] )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Recreate the existing measures following this template&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;New Measure =
VARSelectedDayNightt =
    SELECTEDVALUE ( 'Slicer Day/Night'[Day/Night] )
RETURN
    CALCULATE (
        [Old Measure],
        FILTER (autofxx_order_leg, [DayNight Measure] =SelectedDayNightt )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;4. Create the slicer from the Day/Night slicer table and use the new measure in your visual&lt;BR /&gt;5. If columns are required in the visual they shall be added as measures, example:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="php"&gt;Profit =
VARSelectedDayNightt =
    SELECTEDVALUE ( 'Slicer Day/Night'[Day/Night] )
RETURN
    IF (
        HASONEVALUE ( 'Slicer Day/Night'[Day/Night] ),
        CALCULATE (
            SUM (autofxx_order_leg[portfolio_base_pnl] ),
            FILTER (autofxx_order_leg, [DayNight Measure] =SelectedDayNightt )
        ),
        SUM (autofxx_order_leg[portfolio_base_pnl] )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 04:20:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2425782#M64421</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-03-30T04:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX If Statement Based on Time via Direct Query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2427008#M64487</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, that works great!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I really appreciate the time and effort you have taken to helping me&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 13:26:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-If-Statement-Based-on-Time-via-Direct-Query/m-p/2427008#M64487</guid>
      <dc:creator>hankmobley</dc:creator>
      <dc:date>2022-03-30T13:26:15Z</dc:date>
    </item>
  </channel>
</rss>

