<?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: Count from summarised row count in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454747#M66201</link>
    <description>&lt;P&gt;&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;The Measure gives me a result of 90. This is the total count of all values in this table&lt;/P&gt;&lt;P&gt;Thanks, Rodney&lt;/P&gt;</description>
    <pubDate>Wed, 13 Apr 2022 11:07:47 GMT</pubDate>
    <dc:creator>zenton</dc:creator>
    <dc:date>2022-04-13T11:07:47Z</dc:date>
    <item>
      <title>Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454174#M66157</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have a measure to Countrows of summarized data. Results in the table below.&lt;/P&gt;&lt;P&gt;I need a measure to show count of the rows that equal 18. So the result should be 4 as per table below&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Measure 3 = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUMMARIZE&lt;/SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Labware&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Labware[Analyte Name]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Labware[LIMS Text ID]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Labware[Calendar Date]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;Thanks Rodney&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Apr 2022 07:27:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454174#M66157</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T07:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454204#M66160</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can try&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Measure 4 =
VAR MaxValue =
    MAXX (
        SUMMARIZE (
            Labware,
            Labware[Analyte Name],
            Labware[LIMS Text ID],
            Labware[Calendar Date]
        ),
        [Measure 3]
    )
RETURN
    SUMX (
        SUMMARIZE (
            Labware,
            Labware[Analyte Name],
            Labware[LIMS Text ID],
            Labware[Calendar Date]
        ),
        IF ( [Measure 3] = MaxValue, 1, 0 )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Apr 2022 07:38:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454204#M66160</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T07:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454268#M66164</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/user/viewprofilepage/user-id/317289" target="_blank"&gt;@tamerj1&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The measure4 gave me a result of 90&lt;/P&gt;&lt;P&gt;The MaxValue calculted to 1 not 18&lt;/P&gt;&lt;P&gt;I will give some more information.&lt;/P&gt;&lt;P&gt;Each date has multiple [LIMS Text ID]&lt;/P&gt;&lt;P&gt;Each LIMS Text ID has a max of 18 [Analyte Name]&lt;/P&gt;&lt;P&gt;Each&amp;nbsp;[Analyte Name] has a [Value]&lt;/P&gt;&lt;P&gt;On some dates not all the&amp;nbsp;[Analyte Name] have a result in [Value]&lt;/P&gt;&lt;P&gt;In the table provided the first 4 dates the [Analyte Name] contains all 18&amp;nbsp;[Value]&lt;/P&gt;&lt;P&gt;In the last 2 dates&amp;nbsp;the [Analyte Name] contains only 9&amp;nbsp;[Value]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks Rodney&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 08:10:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454268#M66164</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T08:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454305#M66167</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Ok Then it is easier to hard code it&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Measure 4 =
VAR MaxValue = 18
RETURN
    SUMX (
        SUMMARIZE (
            Labware,
            Labware[Analyte Name],
            Labware[LIMS Text ID],
            Labware[Calendar Date]
        ),
        IF ( [Measure 3] = MaxValue, 1, 0 )
    )&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 08:28:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454305#M66167</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T08:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454331#M66168</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;That is exactly what I did but I get a result of 0&lt;/P&gt;&lt;P&gt;This is because Measure3 gives a result of 90. I only get a Count for each date if I use Measure3 in a Table with the date field&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 08:39:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454331#M66168</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T08:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454383#M66171</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you please share the complete screenshot of your table visual?&lt;/P&gt;&lt;P&gt;I guess the count will be displayed on a card?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 09:01:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454383#M66171</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T09:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454468#M66180</link>
      <description>&lt;P&gt;&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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes the Count will be displayed on Card or Text box&lt;/P&gt;&lt;P&gt;Thanks Rodney&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 09:29:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454468#M66180</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T09:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454485#M66181</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;What is value? is it measure 3?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 09:35:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454485#M66181</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T09:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454506#M66184</link>
      <description>&lt;P&gt;No it is a static value from a database no calcultion&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 09:41:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454506#M66184</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T09:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454584#M66189</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So how is this visual related to the count measure?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 10:11:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454584#M66189</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T10:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454641#M66191</link>
      <description>&lt;P&gt;&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; I created the Count measure to try to get count of all records that have incomplete records. But the Count Measure I wrote would only give totals for all records which equaled to 90.&lt;/P&gt;&lt;P&gt;I need a Measure to Count all incomplete records. In the Matrix above, there is 4 complete and 2 incomplete. So I need a measure to show the count of 4&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 10:31:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454641#M66191</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T10:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454705#M66195</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I hope this one works&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;Complete Task Count =
VAR SummaryTable =
    ADDCOLUMNS (
        SUMMARIZE (
            Labware,
            Labware[Analyte Name],
            Labware[LIMS Text ID],
            Labware[Calendar Date]
        ),
        "@Count", COUNTROWS ( Labware )
    )
VAR MaxCount =
    MAXX ( SummaryTable, [@Count] )
RETURN
    SUMX ( SummaryTable, IF ( [@Count] = MaxCount, 1, 0 ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Apr 2022 10:49:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454705#M66195</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T10:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454747#M66201</link>
      <description>&lt;P&gt;&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;The Measure gives me a result of 90. This is the total count of all values in this table&lt;/P&gt;&lt;P&gt;Thanks, Rodney&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 11:07:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454747#M66201</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T11:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454765#M66203</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I guess one mistake. Try this&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Complete Task Count =
VAR SummaryTable =
    ADDCOLUMNS (
        SUMMARIZE (
            Labware,
            Labware[Analyte Name],
            Labware[LIMS Text ID],
            Labware[Calendar Date]
        ),
        "@Count", CALCULATE ( COUNTROWS ( Labware ) )
    )
VAR MaxCount =
    MAXX ( SummaryTable, [@Count] )
RETURN
    SUMX ( SummaryTable, IF ( [@Count] = MaxCount, 1, 0 ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Apr 2022 11:17:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454765#M66203</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T11:17:05Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454791#M66204</link>
      <description>&lt;P&gt;&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;No same result. I am trying to get my head around this measure. If we are not using [Value] in the calculation how can we calculate if there are less than 18 results of [Value]&lt;/P&gt;</description>
      <pubDate>Wed, 13 Apr 2022 11:32:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454791#M66204</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T11:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454911#M66208</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I think I have totally misunderstood the requirement. Would you please try&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Complete Task Count =
SUMX ( Labware, IF ( ISBLANK ( Labware[Value] ), 0, 1 ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Apr 2022 12:28:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454911#M66208</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T12:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454974#M66212</link>
      <description>&lt;P&gt;&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; This still gives me a result of 90. I am exploring using a filter on my existing total count measure&lt;BR /&gt;Total Records =&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;DISTINCTCOUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Labware[Calendar Date]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt;(Labware[Calendar Date]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;BR /&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Total Records measure result is 6&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Apr 2022 12:48:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2454974#M66212</guid>
      <dc:creator>zenton</dc:creator>
      <dc:date>2022-04-13T12:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: Count from summarised row count</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2455128#M66222</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="56679" data-lia-user-login="zenton" class="lia-mention lia-mention-user"&gt;zenton&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;It is sometimes confusing when don't have the actual data. I will go back to your Measure 3 and start from there&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Relative price =
SUMX ( VALUES ( Labware[Calendar Date] ), IF ( [Measure 3] = 18, 1, 0 ) )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 13 Apr 2022 13:43:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Count-from-summarised-row-count/m-p/2455128#M66222</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-04-13T13:43:19Z</dc:date>
    </item>
  </channel>
</rss>

