<?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 Complex Dax Query Help in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2171021#M50409</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am making my first attempt at a complex Dax query to produce a table of results. I've hit a few bumps a long the way and progress was mostly promising, but I've hit a wall. I'm trying to reproduce a complex SQL stored procedure as a DAX query instead (the users of the query will no longer have sql access and need variable inputs which is why I am pursuing this method).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the DAX query I have so far, hopefully the comments make it understandable. I'm happy to hear feedback on whether my approach is wrong, I feel like I'm about 1 step away from the result I'm after but just can't seem to get it across the line. Please feel free to critique any of the query I've written and advise how it could be improved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// DAX Query
DEFINE
//The following VARs are defined in this way because they originated as What-If Parameters in Power Bi
// These are the dynamic user input variables for the query
  VAR _UpperBound = 
    FILTER(
      KEEPFILTERS(VALUES('Upper Bound'[Upper Bound])),
      'Upper Bound'[Upper Bound] = 559000
    )

  VAR _LowerBound = 
    FILTER(
      KEEPFILTERS(VALUES('Lower Bound'[Lower Bound])),
      'Lower Bound'[Lower Bound] = 204000
    )



  VAR _C_ClassReplen = 
    FILTER(
      KEEPFILTERS(
        VALUES('C Class Replenishment (days)'[C Class Replenishment (days)])
      ),
      'C Class Replenishment (days)'[C Class Replenishment (days)] = 7
    )

  VAR _B_ClassReplen = 
    FILTER(
      KEEPFILTERS(VALUES('B Class Replenishment'[B Class Replenishment])),
      'B Class Replenishment'[B Class Replenishment] = 3
    )

  VAR _A_ClassReplen = 
    FILTER(
      KEEPFILTERS(VALUES('A Class Replenishment'[A Class Replenishment])),
      'A Class Replenishment'[A Class Replenishment] = 1
    )


// Determine which Class each product falls into based on its Annual Use (Fact Table 1)
  VAR _UsageClass = 
    SUMMARIZECOLUMNS(
      Products[SalesCode],
      _UpperBound, // these add in the bound context for use in the measure
      _LowerBound,
      
      "SumDailyUsage", CALCULATE(SUM('Flowline Station Usage'[DailyUsage])),
      "Class", 'Products'[Class],
      
      "SumUsage", CALCULATE(SUM('Annual Usage Value'[Usage]))
    )
    
// Based On Class, Determine the replenishment period
    
   VAR _ReplenishmentPeriod = 
   SUMMARIZECOLUMNS(
   	Products[SalesCode],
   	_UpperBound,
   	_LowerBound,
   	_UsageClass,
   	_C_ClassReplen,
   	_B_ClassReplen,
   	_A_ClassReplen,
	"Replen", [Replenishment Period]
	)
	
// Calculate the period use for each day of use, looking ahead by the number of replenishment days for the product's class
	var _PeriodUsage = 
	filter(
	KEEPFILTERS(
	SUMMARIZECOLUMNS(
	Products[SalesCode],
	'Flowline Stations'[StationId],
	Dates[Date],
	_ReplenishmentPeriod,
	_UpperBound,
   	_LowerBound,
   	_UsageClass,
   	_C_ClassReplen,
   	_B_ClassReplen,
   	_A_ClassReplen,
   	"DailyUsage", sum('Flowline Station Usage'[DailyUsage]),
   	"PeriodUsage", [Period Usage]
   	)
   	),
   	not(ISBLANK([DailyUsage]))
   	)


// Rank each period use for a product at a station Asc and Desc
	var _RankedUsage =

		ADDCOLUMNS(
				'_PeriodUsage',
				"Rank",
				RANKX(filter(_PeriodUsage, Products[SalesCode] == EARLIER(Products[SalesCode]) &amp;amp;&amp;amp; 'Flowline Stations'[StationId] == EARLIER('Flowline Stations'[StationId])), [PeriodUsage],,asc, dense),
				"ReverseRank",
				RANKX(filter(_PeriodUsage, Products[SalesCode] == EARLIER(Products[SalesCode]) &amp;amp;&amp;amp; 'Flowline Stations'[StationId] == EARLIER('Flowline Stations'[StationId])), [PeriodUsage],,desc, dense)
				)
				
// Find the rank at the 95th percentile of all ranks for each product/station
	table _ThresholdRank =
	
	ADDCOLUMNS(
	FILTER(_RankedUsage,
	[ReverseRank] == 1),
	"ThresholdRank", roundup([Rank]*0.95, 0)
	)
	
// **Missing Step** - Create a list of Period Usage for each product/Station where the rank = the 95%ile rank above	

	



			  		
EVALUATE
// ??&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA for any help &amp;amp; advice&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 03 Nov 2021 15:23:12 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-11-03T15:23:12Z</dc:date>
    <item>
      <title>Complex Dax Query Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2171021#M50409</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am making my first attempt at a complex Dax query to produce a table of results. I've hit a few bumps a long the way and progress was mostly promising, but I've hit a wall. I'm trying to reproduce a complex SQL stored procedure as a DAX query instead (the users of the query will no longer have sql access and need variable inputs which is why I am pursuing this method).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is the DAX query I have so far, hopefully the comments make it understandable. I'm happy to hear feedback on whether my approach is wrong, I feel like I'm about 1 step away from the result I'm after but just can't seem to get it across the line. Please feel free to critique any of the query I've written and advise how it could be improved.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// DAX Query
DEFINE
//The following VARs are defined in this way because they originated as What-If Parameters in Power Bi
// These are the dynamic user input variables for the query
  VAR _UpperBound = 
    FILTER(
      KEEPFILTERS(VALUES('Upper Bound'[Upper Bound])),
      'Upper Bound'[Upper Bound] = 559000
    )

  VAR _LowerBound = 
    FILTER(
      KEEPFILTERS(VALUES('Lower Bound'[Lower Bound])),
      'Lower Bound'[Lower Bound] = 204000
    )



  VAR _C_ClassReplen = 
    FILTER(
      KEEPFILTERS(
        VALUES('C Class Replenishment (days)'[C Class Replenishment (days)])
      ),
      'C Class Replenishment (days)'[C Class Replenishment (days)] = 7
    )

  VAR _B_ClassReplen = 
    FILTER(
      KEEPFILTERS(VALUES('B Class Replenishment'[B Class Replenishment])),
      'B Class Replenishment'[B Class Replenishment] = 3
    )

  VAR _A_ClassReplen = 
    FILTER(
      KEEPFILTERS(VALUES('A Class Replenishment'[A Class Replenishment])),
      'A Class Replenishment'[A Class Replenishment] = 1
    )


// Determine which Class each product falls into based on its Annual Use (Fact Table 1)
  VAR _UsageClass = 
    SUMMARIZECOLUMNS(
      Products[SalesCode],
      _UpperBound, // these add in the bound context for use in the measure
      _LowerBound,
      
      "SumDailyUsage", CALCULATE(SUM('Flowline Station Usage'[DailyUsage])),
      "Class", 'Products'[Class],
      
      "SumUsage", CALCULATE(SUM('Annual Usage Value'[Usage]))
    )
    
// Based On Class, Determine the replenishment period
    
   VAR _ReplenishmentPeriod = 
   SUMMARIZECOLUMNS(
   	Products[SalesCode],
   	_UpperBound,
   	_LowerBound,
   	_UsageClass,
   	_C_ClassReplen,
   	_B_ClassReplen,
   	_A_ClassReplen,
	"Replen", [Replenishment Period]
	)
	
// Calculate the period use for each day of use, looking ahead by the number of replenishment days for the product's class
	var _PeriodUsage = 
	filter(
	KEEPFILTERS(
	SUMMARIZECOLUMNS(
	Products[SalesCode],
	'Flowline Stations'[StationId],
	Dates[Date],
	_ReplenishmentPeriod,
	_UpperBound,
   	_LowerBound,
   	_UsageClass,
   	_C_ClassReplen,
   	_B_ClassReplen,
   	_A_ClassReplen,
   	"DailyUsage", sum('Flowline Station Usage'[DailyUsage]),
   	"PeriodUsage", [Period Usage]
   	)
   	),
   	not(ISBLANK([DailyUsage]))
   	)


// Rank each period use for a product at a station Asc and Desc
	var _RankedUsage =

		ADDCOLUMNS(
				'_PeriodUsage',
				"Rank",
				RANKX(filter(_PeriodUsage, Products[SalesCode] == EARLIER(Products[SalesCode]) &amp;amp;&amp;amp; 'Flowline Stations'[StationId] == EARLIER('Flowline Stations'[StationId])), [PeriodUsage],,asc, dense),
				"ReverseRank",
				RANKX(filter(_PeriodUsage, Products[SalesCode] == EARLIER(Products[SalesCode]) &amp;amp;&amp;amp; 'Flowline Stations'[StationId] == EARLIER('Flowline Stations'[StationId])), [PeriodUsage],,desc, dense)
				)
				
// Find the rank at the 95th percentile of all ranks for each product/station
	table _ThresholdRank =
	
	ADDCOLUMNS(
	FILTER(_RankedUsage,
	[ReverseRank] == 1),
	"ThresholdRank", roundup([Rank]*0.95, 0)
	)
	
// **Missing Step** - Create a list of Period Usage for each product/Station where the rank = the 95%ile rank above	

	



			  		
EVALUATE
// ??&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TIA for any help &amp;amp; advice&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 15:23:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2171021#M50409</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-03T15:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Complex Dax Query Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2171042#M50412</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Can you post sample data and expected output?&lt;/P&gt;
&lt;P&gt;Sorry, having trouble following, can you post sample data as text and expected output?&lt;BR /&gt;Not really enough information to go on, please first check if your issue is a common issue listed here: &lt;A href="https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/Before-You-Post-Read-This/ba-p/1116882&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, please see this post regarding How to Get Your Question Answered Quickly: &lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;The most important parts are:&lt;BR /&gt;1. Sample data as text, use the table tool in the editing bar&lt;BR /&gt;2. Expected output from sample data&lt;BR /&gt;3. Explanation in words of how to get from 1. to 2.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Nov 2021 15:33:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2171042#M50412</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2021-11-03T15:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Complex Dax Query Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2174907#M50572</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// Calculate the period use for each day of use, looking ahead by the number of replenishment days for the product's class
	var _PeriodUsage = 
	filter(
	KEEPFILTERS(
	SUMMARIZECOLUMNS(
	//Products[SalesCode],
	//'Flowline Stations'[StationId],
	'Station Component Stock'[StationStockControlId],
	Dates[Date],
	_ReplenishmentPeriod,
	_UpperBound,
   	_LowerBound,
   	_UsageClass,
   	_C_ClassReplen,
   	_B_ClassReplen,
   	_A_ClassReplen,
   	"DailyUsage", sum('Flowline Station Usage'[DailyUsage]),
   	"PeriodUsage", [Period Usage]
   	)
   	),
   	not(ISBLANK([DailyUsage]))
   	)


// Rank each period use for a product at a station Asc and Desc
	var _RankedUsage =

		ADDCOLUMNS(
				'_PeriodUsage',
				"Rank",
				RANKX(filter(_PeriodUsage, 'Station Component Stock'[StationStockControlId] == EARLIER('Station Component Stock'[StationStockControlId])), [PeriodUsage],,asc, dense),
				"ReverseRank",
				RANKX(filter(_PeriodUsage, 'Station Component Stock'[StationStockControlId] == EARLIER('Station Component Stock'[StationStockControlId])), [PeriodUsage],,desc, dense)
				)
			table _RankedUsageTbl = _RankedUsage	
			
// Find the rank at the 95th percentile of all ranks for each StationStockControlId
	table _ThresholdRank =
	
	ADDCOLUMNS(
	FILTER(_RankedUsage,
	[ReverseRank] == 1),
	"ThresholdRank", roundup([Rank]*0.95, 0)
	)
	
// **Missing Step** - Create a list of Period Usage for each StationStockControlId where the rank = the 95%ile rank above	

	&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="313" data-lia-user-login="Greg_Deckler" class="lia-mention lia-mention-user"&gt;Greg_Deckler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the response. I did reply the other day but I've revisited this topic and my latst post is missing? I even received a badge after I sent the reply so no idea how it disappeared!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, re-writing the reply below:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll provide a streamlined part of the query that focuses on the important part. Basically here's waht I'm trying to do:&lt;/P&gt;&lt;P&gt;For each StationStockControlId, Rank the PeriodUsage&lt;/P&gt;&lt;P&gt;Find the Rank at the 95th percentile potision for all PeriodUsage values for each StationStockControlId&lt;/P&gt;&lt;P&gt;Return a list with 1 row per StationStockControlId showing the value at the 95th percentile rank&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the below query starts with calculating _PeriodUsage, I've provided a sample output from _PeriodUsage which will let the rest of the query run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;StationStockControlId&lt;/TD&gt;&lt;TD&gt;Date&lt;/TD&gt;&lt;TD&gt;DailyUsage&lt;/TD&gt;&lt;TD&gt;PeriodUsage&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;165&lt;/TD&gt;&lt;TD&gt;18/10/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;2169&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;165&lt;/TD&gt;&lt;TD&gt;25/06/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;1204&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;256&lt;/TD&gt;&lt;TD&gt;25/06/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;1204&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;256&lt;/TD&gt;&lt;TD&gt;18/10/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;2169&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;420&lt;/TD&gt;&lt;TD&gt;18/10/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;2169&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;420&lt;/TD&gt;&lt;TD&gt;25/06/2021 00:00&lt;/TD&gt;&lt;TD&gt;1064&lt;/TD&gt;&lt;TD&gt;1204&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The part that has me stumped is how I can filter _RankedUsage by the results of _ThresholdUsage. If I was using sql this would be a join on StationStockControlId and Rank.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ultimately, I am looking to get the PeriodUsage for each StationStockControlId where the PeriodUsage is ranked at the 95th percentile of all PeriodUsages for that StationStockControlId. If there is a better way to get the end result in DAX than the way I am trying, please advise!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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;</description>
      <pubDate>Fri, 05 Nov 2021 14:17:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2174907#M50572</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-11-05T14:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Complex Dax Query Help</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2191647#M51255</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may try to use this part to finish your dax query.&lt;/P&gt;
&lt;P&gt;// Find the rank at the 95th percentile of all ranks for each product/station&lt;/P&gt;
&lt;P&gt;var table _ThresholdRank =&lt;/P&gt;
&lt;P&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; ADDCOLUMNS(&lt;/P&gt;
&lt;P&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; FILTER(_RankedUsage,&lt;/P&gt;
&lt;P&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; [ReverseRank] == 1),&lt;/P&gt;
&lt;P&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; "ThresholdRank", roundup([Rank]*0.95, 0)&lt;/P&gt;
&lt;P&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; )&lt;/P&gt;
&lt;P&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;&lt;/P&gt;
&lt;P&gt;// **Missing Step** - Create a list of Period Usage for each product/Station where the rank = the 95%ile rank above&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;&lt;/P&gt;
&lt;P&gt;Return SUMX(table_ThresholdRank,[ThresholdRank])&lt;/P&gt;
&lt;P&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;&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;&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;&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;&lt;/P&gt;
&lt;P&gt;EVALUATE&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Community Support Team _ Caiyun&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly. If you still have problems on it or I misunderstand your needs, please feel free to let us know. Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 05:08:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Complex-Dax-Query-Help/m-p/2191647#M51255</guid>
      <dc:creator>v-cazheng-msft</dc:creator>
      <dc:date>2021-11-16T05:08:47Z</dc:date>
    </item>
  </channel>
</rss>

