<?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: Create a DAX with several conditions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1204448#M19342</link>
    <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , use this in place of activity &lt;/P&gt;
&lt;P&gt;lastnonblankvalue(table[elapsed time],max(table[Activity]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and for elapsed time do not use aggregation (do not summarize)&lt;/P&gt;</description>
    <pubDate>Mon, 06 Jul 2020 17:35:03 GMT</pubDate>
    <dc:creator>amitchandak</dc:creator>
    <dc:date>2020-07-06T17:35:03Z</dc:date>
    <item>
      <title>Create a DAX with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1204414#M19339</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I've the table on the left and I want to obtain the table on the right.&lt;BR /&gt;Already use the SUMARIZEDCOLUMN and works fine if I don´t include the Activity field, but in that case, I only get the maximum Elapsed time but I do not know what was the Activity responsible for that.&lt;BR /&gt;&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 17:16:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1204414#M19339</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-06T17:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1204448#M19342</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , use this in place of activity &lt;/P&gt;
&lt;P&gt;lastnonblankvalue(table[elapsed time],max(table[Activity]))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and for elapsed time do not use aggregation (do not summarize)&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jul 2020 17:35:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1204448#M19342</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-07-06T17:35:03Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1205749#M19362</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;If I use something like:&lt;BR /&gt;&lt;BR /&gt;New Table = SUMMARIZECOLUMNS (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Date'[Date],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Schedules[Client ID],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;FIRSTNONBLANKVALUE( Schedules [Activity], MAX ( Schedules [Time in Acivity] ) ) )&lt;BR /&gt;&lt;BR /&gt;I get an error saying: The SUMMARIZATIONCOLUMNS function expects a table expression for argument '3', but a string or numeric expression was used.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Jul 2020 08:25:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1205749#M19362</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-07T08:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: Create a DAX with several conditions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1205895#M19365</link>
      <description>Anonymous&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Please check your syntax of SUMMARIZECOLUMNS. You are not using it properly. Go to dax.guide/summarizecolumns to know how to use it.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D</description>
      <pubDate>Tue, 07 Jul 2020 09:02:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-DAX-with-several-conditions/m-p/1205895#M19365</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-07T09:02:19Z</dc:date>
    </item>
  </channel>
</rss>

