<?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 to count order numbers in a composite model in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2526628#M70665</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;- Thanks for all your help so far!&lt;BR /&gt;&lt;BR /&gt;I've almost got it.. I can see using DAX studio that I do have orders that are within a few of eachother.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;That is using this dax query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DEFINE
MEASURE 'table'[AP order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "AP",'Sales Order'[Source of Order Description]="TLP CNTL NO")      
        
        
MEASURE 'table'[SO order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "SO",'Sales Order'[Source of Order Description]="TLP CNTL NO")
        
        
MEASURE 'table'[RO order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "RO",'Sales Order'[Source of Order Description]="TLP CNTL NO")
            
            
MEASURE 'table'[Order number difference] = ([AP order num]+[SO order num]) - [RO order num]
EVALUATE
SUMMARIZECOLUMNS(
    'Order Side Custom Data'[Online Req Number],
    "AP order num", [AP order num],
    "SO order num", [SO order num],
    "RO order num", [RO order num],
    "Order number difference", [Order number difference]
)
ORDER BY 
    'Order Side Custom Data'[Online Req Number] ASC&lt;/LI-CODE&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;However when I try to translate this to a single measure I'm not getting anything. Here's my attempt right now , do you see anything that stands out to you? Also, there should not be any AP or SO types on the same online req id which is why I'm adding them at the bottom (at least one should always be 0)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DEFINE
MEASURE 'table'[MyMeasure] =

SUMX(
    'Order side custom data',
    VAR typeRO =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "RO",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")   
        
    VAR typeAP =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "AP",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")   
        
    VAR typeSO =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "SO",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")
        

    VAR diff = (typeSO +typeAP)- typeRO
    
    
  RETURN
      IF(diff &amp;lt;=25 &amp;amp;&amp;amp; diff &amp;gt;0 , 1)
)

EVALUATE
CALCULATETABLE(
    ROW(
    "MyMeasure", [MyMeasure]
    )
)​&lt;/LI-CODE&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>Thu, 19 May 2022 13:27:43 GMT</pubDate>
    <dc:creator>Syk</dc:creator>
    <dc:date>2022-05-19T13:27:43Z</dc:date>
    <item>
      <title>DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2520937#M70275</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;This problem is a little tricky..&lt;BR /&gt;I have 3 tables that need to be factored in here.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sales order&lt;/LI&gt;&lt;LI&gt;Sales order profile&lt;/LI&gt;&lt;LI&gt;Order side custom Data&lt;BR /&gt;&lt;img /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The problem is for each Online Req (in Order side custom data), there will be multiple sales orders with specific types.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I need to find the sales order number (in Sales order) with type "RO" (type in sales order profile) and subtract it by the other sales order number associated with the online req and count the reqs where that difference is &amp;lt;50. The idea being - if the RO sales order and the other sales order are close enough that would mean it was filled automatically.&lt;BR /&gt;&lt;BR /&gt;Example:&lt;BR /&gt;Online req 1234 has 2 sales orders:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Sales order #567 of type "RO"&lt;/LI&gt;&lt;LI&gt;Sales order #579 of type "AP"&lt;/LI&gt;&lt;LI&gt;579 - 567 = 12 (subtract the actual order numbers from one another)&lt;/LI&gt;&lt;LI&gt;We would want to count this order as an auto fill&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To top it off, this is a composite model connected to azure analysis services so the data model can't be modified. Any help on this is greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 15:59:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2520937#M70275</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-17T15:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521037#M70285</link>
      <description>&lt;P&gt;You could try something like&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Num auto filled =
SUMX (
    'Order side custom data',
    VAR typeRO =
        CALCULATE (
            SUMX ( RELATEDTABLE ( 'Sales Order' ), 'Sales Order'[quantity] ),
            'Sales order profile'[type] = "RO"
        )
    VAR typeAP =
        CALCULATE (
            SUMX ( RELATEDTABLE ( 'Sales Order' ), 'Sales Order'[quantity] ),
            'Sales order profile'[type] = "AP"
        )
    VAR diff = typeAP - typeRO
    RETURN
        IF ( diff &amp;lt; 50, 1 )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 17 May 2022 15:20:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521037#M70285</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-05-17T15:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521121#M70301</link>
      <description>&lt;P&gt;This looks like its summing up all of the orders with an RO type and again with AP type then subtracting. Essentially 5000 orders have AP type - 4000 orders have RO type = 1000&lt;BR /&gt;&lt;BR /&gt;I need them for a specific order number where they have the same online req number and subtracting order numbers.&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 15:58:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521121#M70301</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-17T15:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521214#M70309</link>
      <description>&lt;P&gt;Its iterating over the order side custom data table and for each row it is looking at the related sales orders, so the sales orders which are related to the currently iterated row. when the difference between the sales orders of the different types is &amp;lt; 50 it is adding 1 to the sum, essentially counting the rows where the difference is &amp;lt; 50&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 16:28:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521214#M70309</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-05-17T16:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521565#M70349</link>
      <description>&lt;P&gt;From what I understand is its evaluating per line but the nested sumx are evaluating per line with nothing to break them up. The first var 'typeRO' would sum the expression with the filters essentially saying this is the sum of this table with type = RO.&amp;nbsp; so it's not a row level comparison with the 'typeAP', right?&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2022 20:02:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2521565#M70349</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-17T20:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2522530#M70412</link>
      <description>&lt;P&gt;No, the inner SUMXs are not evaluating the entire Sales Order table, they are only evaluating those rows which are related to the current row of order side custom data. For any single row in order side custom data it is comparing the totals of types RO and AP just for that specific order.&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 07:58:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2522530#M70412</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-05-18T07:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2523849#M70494</link>
      <description>&lt;P&gt;Okay I think I know what's happening! The 'Sales Order' table is going down to the line item level. Is there a way to keep it at just the order number level and not go row by row on order lines?&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 15:56:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2523849#M70494</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-18T15:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2523883#M70498</link>
      <description>&lt;P&gt;Not exactly sure what you're after, but inside the SUMX iteration over order side custom data you could do a SUMMARIZE on RELATEDTABLE('Sales Order') or something like that&lt;/P&gt;</description>
      <pubDate>Wed, 18 May 2022 16:10:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2523883#M70498</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-05-18T16:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2526628#M70665</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;- Thanks for all your help so far!&lt;BR /&gt;&lt;BR /&gt;I've almost got it.. I can see using DAX studio that I do have orders that are within a few of eachother.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;That is using this dax query:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DEFINE
MEASURE 'table'[AP order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "AP",'Sales Order'[Source of Order Description]="TLP CNTL NO")      
        
        
MEASURE 'table'[SO order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "SO",'Sales Order'[Source of Order Description]="TLP CNTL NO")
        
        
MEASURE 'table'[RO order num] = CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "RO",'Sales Order'[Source of Order Description]="TLP CNTL NO")
            
            
MEASURE 'table'[Order number difference] = ([AP order num]+[SO order num]) - [RO order num]
EVALUATE
SUMMARIZECOLUMNS(
    'Order Side Custom Data'[Online Req Number],
    "AP order num", [AP order num],
    "SO order num", [SO order num],
    "RO order num", [RO order num],
    "Order number difference", [Order number difference]
)
ORDER BY 
    'Order Side Custom Data'[Online Req Number] ASC&lt;/LI-CODE&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;However when I try to translate this to a single measure I'm not getting anything. Here's my attempt right now , do you see anything that stands out to you? Also, there should not be any AP or SO types on the same online req id which is why I'm adding them at the bottom (at least one should always be 0)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DEFINE
MEASURE 'table'[MyMeasure] =

SUMX(
    'Order side custom data',
    VAR typeRO =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "RO",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")   
        
    VAR typeAP =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "AP",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")   
        
    VAR typeSO =
        CALCULATE(
            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order 
            Number]),convert('Sales Order'[Order Number],INTEGER)),
            'Sales order profile'[Order Type Code]= "SO",'Sales Order'[Source of Order 
            Description]="TLP CNTL NO")
        

    VAR diff = (typeSO +typeAP)- typeRO
    
    
  RETURN
      IF(diff &amp;lt;=25 &amp;amp;&amp;amp; diff &amp;gt;0 , 1)
)

EVALUATE
CALCULATETABLE(
    ROW(
    "MyMeasure", [MyMeasure]
    )
)​&lt;/LI-CODE&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>Thu, 19 May 2022 13:27:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2526628#M70665</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-19T13:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2526856#M70675</link>
      <description>&lt;P&gt;The only thing I can think of is that other columns from the order side custom data table are contributing to the filter context in the standalone measure, whereas in the SUMMARIZECOLUMNS only the [Online Req Number] is in the context.&lt;/P&gt;&lt;P&gt;You could try either doing the SUMX over VALUES('Order Side Custom Data'[Online Req Number]), or wrapping the whole thing in CALCULATE( ..., ALLEXCEPT('Order Side Custom Data', 'Order Side Custom Data'[Online Req Number])&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2022 14:21:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2526856#M70675</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-05-19T14:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX to count order numbers in a composite model</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2527042#M70694</link>
      <description>&lt;P&gt;I got it! It wasn't either of those - although your mention of other columns in the order side custom data table did get me thinking. I just tossed a summarize on that table and the final measure is this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Auto Sourced Orders=

	SUMX(
		    SUMMARIZE('Order Side Custom Data','Order Side Custom Data'[MRC Online Req Number]),
		    VAR typeRO =
		        CALCULATE(
		            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
		            'Sales order profile'[Order Type Code]= "RO",'Sales Order'[Source of Order Description]="TLP CNTL NO")   
		        
		    VAR typeAP =
		        CALCULATE(
		            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
		            'Sales order profile'[Order Type Code]= "AP",'Sales Order'[Source of Order Description]="TLP CNTL NO")   
		        
		    VAR typeSO =
		        CALCULATE(
		            SUMX(SUMMARIZE(RELATEDTABLE('Sales Order'), 'Sales Order'[Order Number]),convert('Sales Order'[Order Number],INTEGER)),
		            'Sales order profile'[Order Type Code]= "SO",'Sales Order'[Source of Order Description]="TLP CNTL NO")
		        
			VAR typeSOAP = typeSO +typeAP
		    VAR diff = typeSOAP - typeRO
		    
		    VAR result = IF(diff &amp;gt;0 &amp;amp;&amp;amp; diff &amp;lt; 50 , 1)
		    
		  RETURN result
		)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;(not sure why the formatting is so bad)&lt;BR /&gt;&lt;BR /&gt;Thanks for all your help&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 19 May 2022 15:23:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-to-count-order-numbers-in-a-composite-model/m-p/2527042#M70694</guid>
      <dc:creator>Syk</dc:creator>
      <dc:date>2022-05-19T15:23:07Z</dc:date>
    </item>
  </channel>
</rss>

