<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments for Capstone Analytics	</title>
	<atom:link href="https://capstoneanalytics.com.au/comments/feed/" rel="self" type="application/rss+xml" />
	<link>https://capstoneanalytics.com.au</link>
	<description>Analytics Simplified</description>
	<lastBuildDate>Tue, 08 Mar 2022 03:34:47 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		Comment on How to solve business problems using DAX &#8211; Part 3: What is the sales amount for the Contoso Brand ? by Oded Dror		</title>
		<link>https://capstoneanalytics.com.au/how-to-solve-business-problems-using-dax-part-3-what-is-the-sales-amount-for-the-contoso-brand/comment-page-1/#comment-630</link>

		<dc:creator><![CDATA[Oded Dror]]></dc:creator>
		<pubDate>Tue, 08 Mar 2022 03:34:47 +0000</pubDate>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=2687#comment-630</guid>

					<description><![CDATA[Hi there,

My Fact Table contain 12.5 Millions rows and the measure
Average Sales Amount for Brand Not Equal to Contoso OR Colour Not Equal to Silver
Gives error
The resultset of a query to external data source has exceeded the maximum allowed size of &#039;1000000&#039; rows.
Also some of Direct query are slow too?
Thanks,
Oded Dror]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>My Fact Table contain 12.5 Millions rows and the measure<br />
Average Sales Amount for Brand Not Equal to Contoso OR Colour Not Equal to Silver<br />
Gives error<br />
The resultset of a query to external data source has exceeded the maximum allowed size of &#8216;1000000&#8217; rows.<br />
Also some of Direct query are slow too?<br />
Thanks,<br />
Oded Dror</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on TOPN metrics in a parent child hierarchy by Don Peters		</title>
		<link>https://capstoneanalytics.com.au/topn-metrics-in-a-parent-child-hierarchy/comment-page-1/#comment-629</link>

		<dc:creator><![CDATA[Don Peters]]></dc:creator>
		<pubDate>Sun, 30 Jan 2022 14:35:43 +0000</pubDate>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=2623#comment-629</guid>

					<description><![CDATA[Fantastic write up. I&#039;ve been trying to implement this in my project and this was very timely]]></description>
			<content:encoded><![CDATA[<p>Fantastic write up. I&#8217;ve been trying to implement this in my project and this was very timely</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on How to sort a 100% stacked bar chart by % values by Rafiq		</title>
		<link>https://capstoneanalytics.com.au/how-to-sort-a-100-stacked-bar-chart-by-values/comment-page-1/#comment-628</link>

		<dc:creator><![CDATA[Rafiq]]></dc:creator>
		<pubDate>Fri, 24 Dec 2021 07:32:18 +0000</pubDate>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=2164#comment-628</guid>

					<description><![CDATA[Awesome. This was very helpful. Many thanks]]></description>
			<content:encoded><![CDATA[<p>Awesome. This was very helpful. Many thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Comment on Strategic colouring in Power BI – Part 1: Comparing different metrics across a common dimension by Himanshu Shisodia		</title>
		<link>https://capstoneanalytics.com.au/strategic-colouring-in-power-bi-part-1-comparing-different-metrics-across-a-common-dimension/comment-page-1/#comment-2</link>

		<dc:creator><![CDATA[Himanshu Shisodia]]></dc:creator>
		<pubDate>Wed, 25 Mar 2020 16:17:36 +0000</pubDate>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=2138#comment-2</guid>

					<description><![CDATA[Hi Abhijith,

Kudos to your effort, a great post !

I would appreciate if you can have a look to my query below. :)

I tried implementing your method on my own. In my scenario, I have one &quot;Transnational Table&quot; with [Debit Amount] &#038; [Credit Amount]. I have taken Dim_Date[Month Name] as a common attribute as it has data for 10 months.

Now as we go step wise, I created same measures:

Step 1- CreditAmount = SUM(&#039;Transactional_Data(2019)&#039;[ Credit Amount])
             DebitAmount = SUM(&#039;Transactional_Data(2019)&#039;[ Debit Amount])

            Plotted two clustered bar chart with the above measures and dragged 
            Dim_Date[Month Name] into the axis. Also, added average line.

Step 2- Created two Average measures like:

             Average_CreditAmt = CALCULATE(
AVERAGEX(
 SUMMARIZE(&#039;Transactional_Data(2019)&#039;,Dim_Date[Month Name],&quot;Credit&quot;,
  [CreditAmount]),
     [Credit]
),
       ALL(Dim_Date[Month Name]),
         NOT(ISBLANK(Dim_Date[Month Name]))
)

Average_DebitAmt = CALCULATE(
AVERAGEX(
 SUMMARIZE(&#039;Transactional_Data(2019)&#039;,Dim_Date[Month Name],&quot;Debit&quot;,
  [DebitAmount]),
     [Debit]
),
       ALL(Dim_Date[Month Name]),
         NOT(ISBLANK(Dim_Date[Month Name]))
)


Step 3- Created below measures for Conditional Formatting


DebitColor = 

VAR month= 
SELECTEDVALUE(MonthName[Month Name])
return  
IF(
    SELECTEDVALUE(Dim_Date[Month Name]) = month
    &#038;&#038; [DebitAmount]  [Average_DebitAmt] ,
        &quot;#003DFF&quot;,
        &quot;#E6E6E6&quot;
    )
)

Step 4- Created a table for slicer: MonthName = VALUES(&#039;Dim_Date&#039;[Month Name])

After implementing the above steps, I&#039;d few issues:

1. My slicer doesn&#039;t slice both the bar charts, do we need to create a relationship between the tables ?

2. In your video above, how come your Y-Axis is static and not getting filtered by the size filter ?

Utter confused.]]></description>
			<content:encoded><![CDATA[<p>Hi Abhijith,</p>
<p>Kudos to your effort, a great post !</p>
<p>I would appreciate if you can have a look to my query below. 🙂</p>
<p>I tried implementing your method on my own. In my scenario, I have one &#8220;Transnational Table&#8221; with [Debit Amount] &amp; [Credit Amount]. I have taken Dim_Date[Month Name] as a common attribute as it has data for 10 months.</p>
<p>Now as we go step wise, I created same measures:</p>
<p>Step 1- CreditAmount = SUM(&#8216;Transactional_Data(2019)'[ Credit Amount])<br />
             DebitAmount = SUM(&#8216;Transactional_Data(2019)'[ Debit Amount])</p>
<p>            Plotted two clustered bar chart with the above measures and dragged<br />
            Dim_Date[Month Name] into the axis. Also, added average line.</p>
<p>Step 2- Created two Average measures like:</p>
<p>             Average_CreditAmt = CALCULATE(<br />
AVERAGEX(<br />
 SUMMARIZE(&#8216;Transactional_Data(2019)&#8217;,Dim_Date[Month Name],&#8221;Credit&#8221;,<br />
  [CreditAmount]),<br />
     [Credit]<br />
),<br />
       ALL(Dim_Date[Month Name]),<br />
         NOT(ISBLANK(Dim_Date[Month Name]))<br />
)</p>
<p>Average_DebitAmt = CALCULATE(<br />
AVERAGEX(<br />
 SUMMARIZE(&#8216;Transactional_Data(2019)&#8217;,Dim_Date[Month Name],&#8221;Debit&#8221;,<br />
  [DebitAmount]),<br />
     [Debit]<br />
),<br />
       ALL(Dim_Date[Month Name]),<br />
         NOT(ISBLANK(Dim_Date[Month Name]))<br />
)</p>
<p>Step 3- Created below measures for Conditional Formatting</p>
<p>DebitColor = </p>
<p>VAR month=<br />
SELECTEDVALUE(MonthName[Month Name])<br />
return<br />
IF(<br />
    SELECTEDVALUE(Dim_Date[Month Name]) = month<br />
    &amp;&amp; [DebitAmount]  [Average_DebitAmt] ,<br />
        &#8220;#003DFF&#8221;,<br />
        &#8220;#E6E6E6&#8221;<br />
    )<br />
)</p>
<p>Step 4- Created a table for slicer: MonthName = VALUES(&#8216;Dim_Date'[Month Name])</p>
<p>After implementing the above steps, I&#8217;d few issues:</p>
<p>1. My slicer doesn&#8217;t slice both the bar charts, do we need to create a relationship between the tables ?</p>
<p>2. In your video above, how come your Y-Axis is static and not getting filtered by the size filter ?</p>
<p>Utter confused.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
