<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mining Intelligence | Capstone Analytics</title>
	<atom:link href="https://capstoneanalytics.com.au/category/mining-intelligence/feed/" rel="self" type="application/rss+xml" />
	<link>https://capstoneanalytics.com.au</link>
	<description>Analytics Simplified</description>
	<lastBuildDate>Thu, 07 Jul 2022 09:06:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to solve business problems using DAX &#8211; Part 5: What is Australia&#8217;s share of global export coal revenue ?</title>
		<link>https://capstoneanalytics.com.au/how-to-solve-business-problems-using-dax-part-5-what-is-australias-share-of-global-export-coal-revenue/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-solve-business-problems-using-dax-part-5-what-is-australias-share-of-global-export-coal-revenue</link>
					<comments>https://capstoneanalytics.com.au/how-to-solve-business-problems-using-dax-part-5-what-is-australias-share-of-global-export-coal-revenue/#respond</comments>
		
		<dc:creator><![CDATA[Abhijith DSouza]]></dc:creator>
		<pubDate>Fri, 01 Jul 2022 03:33:46 +0000</pubDate>
				<category><![CDATA[Mining Intelligence]]></category>
		<category><![CDATA[Power BI]]></category>
		<category><![CDATA[Data Storytelling]]></category>
		<category><![CDATA[DAX]]></category>
		<category><![CDATA[Solve Business Problems]]></category>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=2807</guid>

					<description><![CDATA[0In Part 4 of the series, we talked about how to solve business problems when you want to filter a measure using numeric and date expressions. In this series, we go to the next level of business problems where we discuss problems involving % of the total. These kind of problems are solved easily in [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>0In <a href="https://capstoneanalytics.com.au/how-to-solve-business-problems-using-dax-part-4-how-many-sales-orders-are-greater-than-3000/">Part 4</a> of the series, we talked about how to solve business problems when you want to filter a measure using numeric and date expressions. In this series, we go to the next level of business problems where we discuss problems involving % of the total. These kind of problems are solved easily in Excel but it requires advanced DAX knowledge to solve it in Power BI. We will be using the ALL family of functions to solve this problem.</p>
<p>&nbsp;</p>
<h3><strong>The Business Problem &#8211; What is Australia&#8217;s share of global export coal revenue </strong></h3>
<p>&nbsp;</p>
<p>This problem involves calculating % of the total and is a common problem which needs to be solved in a business. Some other problems along the same lines:</p>
<ul>
<li>What is the % profit for each store last financial year</li>
<li>How much rainfall in % did Brisbane get this year among the top 5 Australian cities</li>
<li>What is the % of electric vehicles among all cars sold in Australia in 2021</li>
</ul>
<p>&nbsp;</p>
<p>For this problem we will be using data from this <a href="https://www.worldstopexports.com/coal-exports-country/">website</a> which gives the top 15 coal exporting countries by revenue which account for  98.6% of global coal exports in 2021. The data model is shown below</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-2813" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.1.png" alt="" width="802" height="532" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.1.png 802w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.1-480x318.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 802px, 100vw" /></p>
<p>&nbsp;</p>
<p>Before calculating the measure for the % of the total we need to calculate the total, in this case the total export revenue</p>
<p>Export Revenue ($) =<br />
<span class="Keyword" style="color: #035aca;">SUM</span><span class="Parenthesis" style="color: #808080;"> (</span> &#8216;Export'[Export Revenue] <span class="Parenthesis" style="color: #808080;">)</span></p>
<p>For the first iteration of the % of total we calculate the measure as</p>
<p>Export Revenue % v1 =<br />
<span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span>[Export Revenue ($)],<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALL</span><span class="Parenthesis" style="color: #808080;"> (</span> Location <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>In the denominator we are using  <span class="Keyword" style="color: #035aca;">ALL</span><span class="Parenthesis" style="color: #808080;"> (</span> Location <span class="Parenthesis" style="color: #808080;">)</span> to remove any filters coming from the Location table and by doing that we get the total export revenue in the denominator. So for each country the numerator is the export revenue of that country and the denominator is the total export revenue and the ratio gives the %.</p>
<p>We place this two measures in a table visual along with the column &#8216;Country&#8217; and we get</p>
<p><img decoding="async" class="alignnone size-full wp-image-2814" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.2.png" alt="" width="491" height="488" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.2.png 491w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.2-480x477.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 491px, 100vw" /></p>
<p>So, to answer the question, Australia&#8217;s share of the global coal revenue is 36.2% in 2021.</p>
<p>Let&#8217;s add some complexity and start asking more questions</p>
<p>&nbsp;</p>
<h3><strong>The Business Problem &#8211; What is the export coal revenue for Asian countries as a percentage of Asia&#8217;s revenue</strong></h3>
<p>&nbsp;</p>
<p>There are six countries in Asia in the model- Indonesia, Mongolia, Kazakhstan, Philippines, China, and Vietnam. The problem is to calculate the export coal revenue of each of those countries as a % of Asia&#8217;s revenue. We have the column &#8216;Continent&#8217; available to us in the model, so we drag it into a slicer and select Asia and this happens</p>
<p>&nbsp;</p>
<p><img decoding="async" class="alignnone size-full wp-image-2816" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.3.png" alt="" width="626" height="222" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.3.png 626w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.3-480x170.png 480w" sizes="(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 626px, 100vw" /></p>
<p>Not quite the result we expected for the Export Revenue % v1 measure. Why is that ? Recall that the denominator of the <span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> </span>function in the measure uses  <span class="Keyword" style="color: #035aca;">ALL</span><span class="Parenthesis" style="color: #808080;"> (</span> Location <span class="Parenthesis" style="color: #808080;">)</span>which removes filters from the Location table. Hence, even though we select Asia from the Continent column which is in the Location table, the filter from that column is removed giving all the rows of that table. Hence we get the % of the global export coal revenue and not Asia&#8217;s. We need to define another measure which retains the filters coming from the Continent column. We define it as below</p>
<p>&nbsp;</p>
<p>Export Revenue % v2 =<br />
<span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span>[Export Revenue ($)],<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>We have replaced  <span class="Keyword" style="color: #035aca;">ALL</span><span class="Parenthesis" style="color: #808080;"> (</span> Location <span class="Parenthesis" style="color: #808080;">) with  <span class="Keyword" style="color: #035aca;">ALLSELECTED</span> ( Location[Country] ). What this does is gives all the rows from the selection, in this case we have selected &#8216;Asia&#8217; from the &#8216;Continent&#8217; column and this filter is applied on the measure and we get all the countries under &#8216;Asia&#8217;. Thus the denominator is the sum of the export revenue for Asia which is $30.66 bn.</span></p>
<p>We place this measure in the same visual as above and get the below</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2817" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.4.png" alt="" width="842" height="239" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.4.png 842w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.4-480x136.png 480w" sizes="auto, (min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 842px, 100vw" /></p>
<p>This is exactly the result we wanted. Indonesia has the biggest % share for all Asian countries at 86.4% followed by Mongolia at 6.2%. You can select any Continent in the slicer and the Export Revenue % v2 measure gives the % for the countries in that continent.</p>
<p>Let&#8217;s add a twist to the problem. What if we place Continent into the visual above and convert it into a matrix visual and expand to the lowest level (Country). From here on we would only be focusing on the v2 measure. The visual would look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2819" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.5.png" alt="" width="546" height="530" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.5.png 546w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.5-480x466.png 480w" sizes="auto, (min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 546px, 100vw" /></p>
<p>&nbsp;</p>
<p>What we now have is that the % for the countries are correct but the % for the continents are wrong. Why is that ? Because in the denominator of the <span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> function the filter for continent is still present. Hence the numerator and denominator are one and the same and the ratio is 1.</span>  We need another set of measures which gives the correct % for the countries as well as the continents. WE define another measure which we wont be using in the visual but will be used in the subsequent v4 measure.</p>
<p>Export Revenue % v3 =<br />
<span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> &#8216;Export'[Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span></p>
<p>The above measure is used in the v4 measure which is defined as follows</p>
<p>Export Revenue % v4 =<br />
<span class="Keyword" style="color: #035aca;">IF</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">ISINSCOPE</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> &amp;&amp; <span class="Keyword" style="color: #035aca;">NOT</span><span class="Parenthesis" style="color: #808080;"> (</span> <span class="Keyword" style="color: #035aca;">ISFILTERED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], [Export Revenue % v3] <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span>[Export Revenue % v2]<br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>This measure has two parts. The first part applies to the rows in the visual with continents filtered and the second to the rows in the visual with countries filtered. The measure is placed in the visual and it looks like this</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2820" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.6.png" alt="" width="572" height="536" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.6.png 572w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.6-480x450.png 480w" sizes="auto, (min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 572px, 100vw" /></p>
<p>&nbsp;</p>
<p>This is exactly what we wanted and we can clearly see the difference between v2 and v4 measures. The v4 measure uses the v3 measure as a denominator in the <span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> function. And the denominator has <span class="Keyword" style="color: #035aca;">ALLSELECTED</span> ( Location[Continent] ) which removes filters from selected continents. We could have used <span class="Keyword" style="color: #035aca;">ALL</span>( Location[Continent] ) as well and achieved the same result as above but the difference is that when we select more than one Continent from a slicer it would not have worked. Let us do just that. We will select Europe and North America from the Continent slicer and see what the visual does</span></p>
<p>&nbsp;</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2821" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.7.png" alt="" width="820" height="339" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.7.png 820w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.7-480x198.png 480w" sizes="auto, (min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 820px, 100vw" /></p>
<p>The reason for using <span class="Parenthesis" style="color: #808080;"><span class="Keyword" style="color: #035aca;">ALLSELECTED</span> ( Location[Continent] ) is now clear. When we select &#8216;Europe&#8217; and &#8216;North America&#8217; from the Continent slicer we get the % revenue of Europe and North America of their combined total.</span></p>
<p>Let us add another twist to this. For the set up above what we wanted to show the export revenue for each country as the % of  ALL the counties in the selection regardless of the continent they are in. For ex: we want to know the % of United States as $9.7/$35.06. For this we define our final measure as below</p>
<p>&nbsp;</p>
<p>Export Revenue % v5 =<br />
<span class="Keyword" style="color: #035aca;">IF</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">ISINSCOPE</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> &amp;&amp; <span class="Keyword" style="color: #035aca;">NOT</span><span class="Parenthesis" style="color: #808080;"> (</span> <span class="Keyword" style="color: #035aca;">ISFILTERED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], [Export Revenue % v3] <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent8">        </span>[Export Revenue ($)],<br />
<span class="indent8">        </span><span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue % v3], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="indent4">    </span><span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>&nbsp;</p>
<p>Here, in the second part of the IF statement in the denominator of the <span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> function we remove all filters from the selected countries which would give us the total of $35.06 for all the countries and the numerator would the export revenue for that particular country. The final visual looks like this </span></p>
<p>&nbsp;</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-2822" src="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.8.png" alt="" width="820" height="339" srcset="https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.8.png 820w, https://capstoneanalytics.com.au/wp-content/uploads/2022/07/How-to-write-DAX-5.8-480x198.png 480w" sizes="auto, (min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 820px, 100vw" /></p>
<p>You can see that the % of United States coal revenue for all the countries in Europe and North America is 27.7%</p>
<p>&nbsp;</p>
<h3><strong>Summary</strong></h3>
<p>In this fifth part of the series, we have seen how to use the ALL family of functions to calculate % of totals for various business requirements</p>
<blockquote><p>Any problem involving the calculation of % of total values</p></blockquote>
<ul>
<li>What is Australia&#8217;s share of global export revenue</li>
<li>What % of garments are manufactured in China ?</li>
<li>What is Amazon&#8217;s share of global electronics sales ?</li>
</ul>
<p>&nbsp;</p>
<p><em>Australia&#8217;s share of global export revenue=</em><br />
<span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span>[Export Revenue ($)],<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>&nbsp;</p>
<p>When Continent is added as the top most hierarchy in a visual, to get the share of each country as the % of the Continent total</p>
<p><span class="Keyword" style="color: #035aca;">IF</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">ISINSCOPE</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> &amp;&amp; <span class="Keyword" style="color: #035aca;">NOT</span><span class="Parenthesis" style="color: #808080;"> (</span> <span class="Keyword" style="color: #035aca;">ISFILTERED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], <span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> &#8216;Export'[Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span>[Export Revenue % v2]<br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>&nbsp;</p>
<p>When Continent is added as the top most hierarchy in a visual, to get the share of each country as the % of the selected Continents&#8217; total</p>
<p><span class="Keyword" style="color: #035aca;">IF</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">ISINSCOPE</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> &amp;&amp; <span class="Keyword" style="color: #035aca;">NOT</span><span class="Parenthesis" style="color: #808080;"> (</span> <span class="Keyword" style="color: #035aca;">ISFILTERED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue ($)], <span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> &#8216;Export'[Export Revenue ($)], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Continent] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span>,<br />
<span class="indent4">    </span><span class="Keyword" style="color: #035aca;">DIVIDE</span><span class="Parenthesis" style="color: #808080;"> (</span><br />
<span class="indent8">        </span>[Export Revenue ($)],<br />
<span class="indent8">        </span><span class="Keyword" style="color: #035aca;">CALCULATE</span><span class="Parenthesis" style="color: #808080;"> (</span> [Export Revenue % v3], <span class="Keyword" style="color: #035aca;">ALLSELECTED</span><span class="Parenthesis" style="color: #808080;"> (</span> Location[Country] <span class="Parenthesis" style="color: #808080;">)</span> <span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="indent4">    </span><span class="Parenthesis" style="color: #808080;">)</span><br />
<span class="Parenthesis" style="color: #808080;">)</span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://capstoneanalytics.com.au/how-to-solve-business-problems-using-dax-part-5-what-is-australias-share-of-global-export-coal-revenue/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Analytics use cases for the mining industry – Part 2: Industry Intelligence</title>
		<link>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-2-industry-intelligence/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=analytics-use-cases-for-the-mining-industry-part-2-industry-intelligence</link>
					<comments>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-2-industry-intelligence/#respond</comments>
		
		<dc:creator><![CDATA[Abhijith DSouza]]></dc:creator>
		<pubDate>Thu, 05 Mar 2020 00:08:06 +0000</pubDate>
				<category><![CDATA[Mining Intelligence]]></category>
		<category><![CDATA[Power BI]]></category>
		<category><![CDATA[Anglo American]]></category>
		<category><![CDATA[BMA]]></category>
		<category><![CDATA[Coal Exports]]></category>
		<category><![CDATA[Coal Mining]]></category>
		<category><![CDATA[Coking Coal]]></category>
		<category><![CDATA[Glencore]]></category>
		<category><![CDATA[Peabody]]></category>
		<category><![CDATA[Queensland Coal Exports]]></category>
		<category><![CDATA[Rio Tinto]]></category>
		<category><![CDATA[Thermal Coal]]></category>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=1941</guid>

					<description><![CDATA[Wouldn&#8217;t it be great if you had access to reliable and accurate mining intelligence data that was not static. Imagine the possibilities of a rich, interactive mining intelligence report that gave you instant insights on your fingertips. This is what the report aims to do. Its a report on Queenslands coal exports from FY2015 &#8211; [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Wouldn&#8217;t it be great if you had access to reliable and accurate mining intelligence data that was not static. Imagine the possibilities of a rich, interactive mining intelligence report that gave you instant insights on your fingertips.</p>
<p>This is what the report aims to do. Its a report on Queenslands coal exports from FY2015 &#8211; FY2019. It is a highly interactive report and gives the total breakdown of coal tonnes by coal type, companies, mines, and countries. The full report has also got the $ value of the tonnes sold to each countries for each quarter.</p>
<p>A snapshot of the report is here</p>
<p><a href="https://app.powerbi.com/view?r=eyJrIjoiM2EyYzA2ODItYTc2MC00MjRkLThkYmItNjBhYmM4MzIyMWRiIiwidCI6IjZjZDI2M2IwLTQxNmItNGY5MC04ZDRmLTJmNmE1YjU2OGM1ZSJ9&amp;pageName=ReportSectionb13637e895d7d18ea36e">Queensland coal exports from FY2015 &#8211; FY2019</a></p>
<p>&nbsp;</p>
<p>Contact us for the full report which can be fully customised for your company.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-2-industry-intelligence/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Analytics use cases for the mining industry &#8211; Part 1: Analysing mine model in Power BI</title>
		<link>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-1-analysing-mine-model-in-power-bi/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=analytics-use-cases-for-the-mining-industry-part-1-analysing-mine-model-in-power-bi</link>
					<comments>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-1-analysing-mine-model-in-power-bi/#respond</comments>
		
		<dc:creator><![CDATA[Abhijith DSouza]]></dc:creator>
		<pubDate>Tue, 25 Feb 2020 09:27:09 +0000</pubDate>
				<category><![CDATA[Mining Intelligence]]></category>
		<category><![CDATA[Power BI]]></category>
		<category><![CDATA[Block Layout]]></category>
		<category><![CDATA[Coal Mining]]></category>
		<category><![CDATA[Coal Qualities]]></category>
		<category><![CDATA[Cross Section Power BI]]></category>
		<category><![CDATA[Mine Planning]]></category>
		<category><![CDATA[Mine Scheduling]]></category>
		<category><![CDATA[Mining]]></category>
		<category><![CDATA[Thickness Histogram]]></category>
		<category><![CDATA[Thickness Plot]]></category>
		<guid isPermaLink="false">https://capstoneanalytics.com.au/?p=1890</guid>

					<description><![CDATA[Mining industry is swimming with data. There is data from exploration, geology, mining, processing, shipping and from other areas of the supply chain. Most of this data can only be viewed and analysed within specific software relevant to the domain. Ex: A geological model can be analysed in software such as Vulcan, Suprac etc, A [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Mining industry is swimming with data. There is data from exploration, geology, mining, processing, shipping and from other areas of the supply chain. Most of this data can only be viewed and analysed within specific software relevant to the domain. Ex: A geological model can be analysed in software such as Vulcan, Suprac etc, A mine model can be analysed in software such as XPAC, Deswik etc. Some software companies do provide end to end solutions combining geology, mine model, mine planning but they have some drawbacks</p>
<ol>
<li>Licencing costs are high running upto thousands of dollars annually. Whether you an engineer designing a coal mine or a manager viewing just the outputs you still pay the same licencing fees</li>
<li>Large mine models tend to be sluggish. Even for basic tasks like viewing a thickness plot you have to open these bulky models and wade through the maze of icons to display the plot which can take up significance amount of time</li>
<li>They are not intuitive nor interactive to use for the non technical professional.</li>
</ol>
<p>The last point is very important. These software are highly specialised and can take years to master. Its not easy for say a mine supervisor to open a mine planning software and bring up the mine plan as 1) he/she probably won&#8217;t have the licence and 2) they are not technical enough to operate them.</p>
<p>Wouldn&#8217;t be great if you could access your mine model/mine plan from a commercially available product (think Excel on steroids) which is fast, intuitive and interactive to use ? If you are excited about this prospect, read on</p>
<p>With<a href="https://powerbi.microsoft.com/en-us/"> Microsoft Power BI</a> you can now analyse your mine model/mine plan by easily extracting your data from any mine planning software. Power BI can ingest data in over 250 different formats (databases, Excel, Csv, cloud) and can manipulate it to give you the desired outputs. It has great mapping capability too and allowing your block layout to be ingested into it. The advantages of using Power BI over mine planning software for analysing your mine model/mine schedule are:</p>
<ol>
<li>It is fast, intuitive, and interactive making it ideal for everyone to use it, from a supervisor to the CEO</li>
<li>A Power BI report is hosted in the cloud and can be shared easily within an organisation with the right security implemented</li>
<li>Licencing costs are a fraction of the costs associated with mine planning software.</li>
<li>Power BI is capable of handling large volumes data (1 trillion rows) without being sluggish</li>
<li>Multiple mine models from different mine sites in an asset can be imported into one Power BI model</li>
</ol>
<p>Watch this demo video on how to analyse your mine model using Power BI</p>
<div style="width: 1080px;" class="wp-video"><video class="wp-video-shortcode" id="video-1890-1" width="1080" height="517" preload="metadata" controls="controls"><source type="video/mp4" src="https://capstoneanalytics.com.au/wp-content/uploads/2020/02/mine-cross-section.mp4?_=1" /><a href="https://capstoneanalytics.com.au/wp-content/uploads/2020/02/mine-cross-section.mp4">https://capstoneanalytics.com.au/wp-content/uploads/2020/02/mine-cross-section.mp4</a></video></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
					
					<wfw:commentRss>https://capstoneanalytics.com.au/analytics-use-cases-for-the-mining-industry-part-1-analysing-mine-model-in-power-bi/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		<enclosure url="https://capstoneanalytics.com.au/wp-content/uploads/2020/02/mine-cross-section.mp4" length="1539001" type="video/mp4" />

			</item>
	</channel>
</rss>
