<?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>Excel Dashboard Software &#187; How-To</title>
	<atom:link href="http://www.exceldashboard.org/category/how-to/feed" rel="self" type="application/rss+xml" />
	<link>http://www.exceldashboard.org</link>
	<description>Best Excel Dashboards using Excel</description>
	<lastBuildDate>Fri, 20 Aug 2010 17:27:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pivot Table</title>
		<link>http://www.exceldashboard.org/pivot-table</link>
		<comments>http://www.exceldashboard.org/pivot-table#comments</comments>
		<pubDate>Fri, 20 Aug 2010 17:27:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/pivot-table</guid>
		<description><![CDATA[Let say you have your data in the following format

&#160;
&#160;
&#160;
&#160;
&#160;
&#160;
&#160;
The column represents the year. Let us not concern about the other columns for now.
How can we represent the data above as below which shows the data grouped by the year where the current row year is added to only the next row year. Every row, [...]]]></description>
			<content:encoded><![CDATA[<p>Let say you have your data in the following format</p>
<p><img height="233" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-100.jpg" width="38" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The column represents the year. Let us not concern about the other columns for now.</p>
<p>How can we represent the data above as below which shows the data grouped by the year where the current row year is added to only the next row year. Every row, looks ahead , get the next year value and sums it up and shows as a unique row.</p>
<p>&nbsp;</p>
<p><img height="73" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-101.jpg" width="497" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>So the end result should be a pivot table that has 2008 and 2009 values summed up, 2009 and 2010 summed up.</p>
<p>Assuming there is no direct relationship between 2008 and 2009 we will try to derive algebric relation and see if we can get the desired result.</p>
<p>The solution assumes that there will be a starting year provided as a seed value. so in this case we will consider 2001 as the seed value.</p>
<p>On the dashboard, we can create a parameter so that we don&#8217;t have to hard code the value 2001</p>
<p>Take a look at the below screenshot</p>
<p><img height="235" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-104.jpg" width="410" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The different columns are mod calculations to derive the final relation on how the alternative rows can be related.</p>
<p>Once we get a common value or the relation value, we can easily sum them up in the SQL</p>
<p>The first mod operation between Year and 2001 (fixed value or seed value) gives us sequential numbers</p>
<p>The second mod operation on top of the first mod gives us 010101 sequence.</p>
<p>So now looking at the pattern, if we subtract the second mod operation value from the first mod value, we get the column Diff</p>
<p>So now, 2001 and 2002 are related because their calculated diff value is 0, so are 2003 and 2004</p>
<p>But we also need rows that represent the sum between 2002 and 2003, 2004 and 2005 and so on. The above logic is missing those.</p>
<p>In our calculation if we add the two mods, we get below</p>
<p><img height="235" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-105.jpg" width="410" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now, we have years (2002,2003), (2004,2005), (2006,2007) related.</p>
<p>So in our query, if we join the two SQL using union then we can expect to see all the row combinations</p>
<p>Now let us implement it on the dashboard.</p>
<p>The sample excel file is as shown below</p>
<p><img height="520" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-106.jpg" width="176" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We will connect to this excel file and pull this table on the dashboard (Check this <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-1">tutorial how to connect excel file</a>)</p>
<p>here is the screenshot of the excel file on the dashboard</p>
<p>&nbsp;</p>
<p><img height="303" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-107.jpg" width="514" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Next we split the date column into year and month columns</p>
<p><img height="302" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-108.jpg" width="406" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img height="274" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-111.jpg" width="200" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We select the year and month columns (need to scroll down when selecting month)</p>
<p>So we get the table (qlet) as below</p>
<p><img height="315" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-115.jpg" width="875" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>NOTE: We can manually change the month format to remove the first two digits. for e.g 01-Jan to just &#8220;Jan&#8221;. We edit the query and update the following line <strong>format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;, (we just added an extra m and remove the other format)</strong></p>
<p>We also add the following columns mod1, mod2, related field, r1 and r2 which are explained below</p>
<p>&lt;code&gt;</p>
<p>select<br />
&#8220;some_date&#8221;,<br />
year(&#8221;some_date&#8221;) as &#8220;so_Year&#8221;,<br />
<strong>&#8220;so_Year&#8221; &#8211; 2001 as &#8220;mod1&#8243; ,</strong><br />
<strong>mod1 &#8211; fix(mod1/2)*2 as mod2,<br />
mod1 &#8211; mod2 as &#8220;related_field&#8221;,<br />
related_field + 2001 as r1,<br />
related_field + 2001 + 1 as r2,</strong></p>
<p>format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;,<br />
format(&#8221;some_date&#8221;,&#8217;yyyy-mm(mmm)&#8217;) as &#8220;so_Yr_Mth_NN&#8221;,<br />
format(&#8221;some_date&#8221;,&#8217;q') as &#8220;so_Qtr&#8221;,<br />
format(&#8221;some_date&#8221;,&#8217;yyyy-ww&#8217;) as &#8220;so_Yr_wk&#8221;,<br />
datepart(&#8217;y',&#8221;some_date&#8221;) as &#8220;so_Yr_Dy&#8221; ,<br />
&#8220;some_amount&#8221;<br />
From (Select<br />
she.&#8221;some_date&#8221; ,<br />
she.&#8221;some_amount&#8221;<br />
From<br />
[Sheet1$] she<br />
) as dateColsx</p>
<p>&lt;/code&gt;</p>
<p>Since Excel odbc does not support the mod function, we use division and multiplication to arrive at the mod value</p>
<p>We have hard coded the value to 2001 but we can always replace this with the parameter from the dashboard which we will do it at the very end.</p>
<p>Having all the related columns derived based on our excel model earlier now it is time to work on the month columns. Since all the dates are rows, we need to somehow show them as columns.</p>
<p>First step is we use the switch statement to separate each month into a column.</p>
<p>here is the SQL with the switch statement</p>
<p>&lt;code&gt;</p>
<p>  select &#8220;so_Year&#8221;, r1&amp;&#8217; &#8212; &#8216;&amp;r2 as yr<br />
<strong>  ,switch(so_mth_disp = &#8216;Jan&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jan&#8217;,0) as &#8220;m1&#8243;<br />
  ,switch(so_mth_disp = &#8216;Feb&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Feb&#8217;,0) as &#8220;m2&#8243;<br />
  ,switch(so_mth_disp = &#8216;Mar&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Mar&#8217;,0) as &#8220;m3&#8243;<br />
  ,switch(so_mth_disp = &#8216;Apr&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Apr&#8217;,0) as &#8220;m4&#8243;<br />
  ,switch(so_mth_disp = &#8216;May&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;May&#8217;,0) as &#8220;m5&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jun&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jun&#8217;,0) as &#8220;m6&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jul&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jul&#8217;,0) as &#8220;m7&#8243;<br />
  ,switch(so_mth_disp = &#8216;Aug&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Aug&#8217;,0) as &#8220;m8&#8243;<br />
  ,switch(so_mth_disp = &#8216;Sep&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Sep&#8217;,0) as &#8220;m9&#8243;<br />
  ,switch(so_mth_disp = &#8216;Oct&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Oct&#8217;,0) as &#8220;m10&#8243;<br />
  ,switch(so_mth_disp = &#8216;Nov&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Nov&#8217;,0) as &#8220;m11&#8243;<br />
  ,switch(so_mth_disp = &#8216;Dec&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Dec&#8217;,0) as &#8220;m12&#8243;</strong></p>
<p>  from<br />
  (<br />
  select<br />
  &#8220;some_date&#8221;,<br />
  year(&#8221;some_date&#8221;) as &#8220;so_Year&#8221;,<br />
  &#8220;so_Year&#8221; &#8211; 2001 as &#8220;mod1&#8243; ,<br />
  mod1 &#8211; fix(mod1/2)*2 as mod2,<br />
  mod1 &#8211; mod2 as &#8220;related_field&#8221;,<br />
  related_field + 2001 as r1,<br />
  related_field + 2001 + 1 as r2,</p>
<p>  format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;yyyy-mm(mmm)&#8217;) as &#8220;so_Yr_Mth_NN&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;q') as &#8220;so_Qtr&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;yyyy-ww&#8217;) as &#8220;so_Yr_wk&#8221;,<br />
  datepart(&#8217;y',&#8221;some_date&#8221;) as &#8220;so_Yr_Dy&#8221; ,<br />
  &#8220;some_amount&#8221;<br />
  From (Select<br />
    she.&#8221;some_date&#8221; ,<br />
    she.&#8221;some_amount&#8221;<br />
  From<br />
    [Sheet1$] she<br />
   ) as dateColsx<br />
  )</p>
<p>
&lt;/code&gt;</p>
<p>here is the resulting table</p>
<p><img height="413" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-116.jpg" width="1054" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If you notice we concatenated r1 and r2 to create a single new column and we named it as &#8216;Yr&#8217;</p>
<p>Finally we sum all the month columns and group by the new &#8216;Yr&#8217; column</p>
<p>select yr,<br />
<strong>sum(m1) as jan,<br />
sum(m2) as feb,<br />
sum(m3) as Mar,<br />
sum(m4) as apr,<br />
sum(m5) as may,<br />
sum(m6) as jun,<br />
sum(m7) as jul,<br />
sum(m8) as aug,<br />
sum(m9) as sep,<br />
sum(m10) as oct,<br />
sum(m11) as nov,<br />
sum(m12) as dec</strong><br />
from<br />
(<br />
  select &#8220;so_Year&#8221;, r1&amp;&#8217; &#8212; &#8216;&amp;r2 as yr<br />
  ,switch(so_mth_disp = &#8216;Jan&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jan&#8217;,0) as &#8220;m1&#8243;<br />
  ,switch(so_mth_disp = &#8216;Feb&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Feb&#8217;,0) as &#8220;m2&#8243;<br />
  ,switch(so_mth_disp = &#8216;Mar&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Mar&#8217;,0) as &#8220;m3&#8243;<br />
  ,switch(so_mth_disp = &#8216;Apr&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Apr&#8217;,0) as &#8220;m4&#8243;<br />
  ,switch(so_mth_disp = &#8216;May&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;May&#8217;,0) as &#8220;m5&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jun&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jun&#8217;,0) as &#8220;m6&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jul&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jul&#8217;,0) as &#8220;m7&#8243;<br />
  ,switch(so_mth_disp = &#8216;Aug&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Aug&#8217;,0) as &#8220;m8&#8243;<br />
  ,switch(so_mth_disp = &#8216;Sep&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Sep&#8217;,0) as &#8220;m9&#8243;<br />
  ,switch(so_mth_disp = &#8216;Oct&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Oct&#8217;,0) as &#8220;m10&#8243;<br />
  ,switch(so_mth_disp = &#8216;Nov&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Nov&#8217;,0) as &#8220;m11&#8243;<br />
  ,switch(so_mth_disp = &#8216;Dec&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Dec&#8217;,0) as &#8220;m12&#8243;</p>
<p>  from<br />
  (<br />
  select<br />
  &#8220;some_date&#8221;,<br />
  year(&#8221;some_date&#8221;) as &#8220;so_Year&#8221;,<br />
  &#8220;so_Year&#8221; &#8211; 2001 as &#8220;mod1&#8243; ,<br />
  mod1 &#8211; fix(mod1/2)*2 as mod2,<br />
  mod1 &#8211; mod2 as &#8220;related_field&#8221;,<br />
  related_field + 2001 as r1,<br />
  related_field + 2001 + 1 as r2,</p>
<p>  format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;yyyy-mm(mmm)&#8217;) as &#8220;so_Yr_Mth_NN&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;q') as &#8220;so_Qtr&#8221;,<br />
  format(&#8221;some_date&#8221;,&#8217;yyyy-ww&#8217;) as &#8220;so_Yr_wk&#8221;,<br />
  datepart(&#8217;y',&#8221;some_date&#8221;) as &#8220;so_Yr_Dy&#8221; ,<br />
  &#8220;some_amount&#8221;<br />
  From (Select<br />
    she.&#8221;some_date&#8221; ,<br />
    she.&#8221;some_amount&#8221;<br />
  From<br />
    [Sheet1$] she<br />
   ) as dateColsx<br />
  )<br />
)<br />
group by yr</p>
<p>Result</p>
<p><img height="133" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-117.jpg" width="644" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This almost looks like what we needed but it is missing the rows 2002 &#8212; 2003, 2004 &#8212; 2005 etc</p>
<p>We simply edit the SQL, duplicate it and append to the same SQL as a union query. The only difference would for the bottom union is that the related_field would be the addition of mod1 and mod2</p>
<p>select yr,<br />
sum(m1) as jan,<br />
sum(m2) as feb,<br />
sum(m3) as Mar,<br />
sum(m4) as apr,<br />
sum(m5) as may,<br />
sum(m6) as jun,<br />
sum(m7) as jul,<br />
sum(m8) as aug,<br />
sum(m9) as sep,<br />
sum(m10) as oct,<br />
sum(m11) as nov,<br />
sum(m12) as dec<br />
from<br />
(<br />
  select &#8220;so_Year&#8221;, r1&amp;&#8217; &#8212; &#8216;&amp;r2 as yr<br />
  ,switch(so_mth_disp = &#8216;Jan&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jan&#8217;,0) as &#8220;m1&#8243;<br />
  ,switch(so_mth_disp = &#8216;Feb&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Feb&#8217;,0) as &#8220;m2&#8243;<br />
  ,switch(so_mth_disp = &#8216;Mar&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Mar&#8217;,0) as &#8220;m3&#8243;<br />
  ,switch(so_mth_disp = &#8216;Apr&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Apr&#8217;,0) as &#8220;m4&#8243;<br />
  ,switch(so_mth_disp = &#8216;May&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;May&#8217;,0) as &#8220;m5&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jun&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jun&#8217;,0) as &#8220;m6&#8243;<br />
  ,switch(so_mth_disp = &#8216;Jul&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Jul&#8217;,0) as &#8220;m7&#8243;<br />
  ,switch(so_mth_disp = &#8216;Aug&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Aug&#8217;,0) as &#8220;m8&#8243;<br />
  ,switch(so_mth_disp = &#8216;Sep&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Sep&#8217;,0) as &#8220;m9&#8243;<br />
  ,switch(so_mth_disp = &#8216;Oct&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Oct&#8217;,0) as &#8220;m10&#8243;<br />
  ,switch(so_mth_disp = &#8216;Nov&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Nov&#8217;,0) as &#8220;m11&#8243;<br />
  ,switch(so_mth_disp = &#8216;Dec&#8217;, some_amount, so_mth_disp &lt;&gt; &#8216;Dec&#8217;,0) as &#8220;m12&#8243;</p>
<p>  from<br />
  (<br />
   (<br />
    select<br />
    &#8220;some_date&#8221;,<br />
    year(&#8221;some_date&#8221;) as &#8220;so_Year&#8221;,<br />
    &#8220;so_Year&#8221; &#8211; 2001 as &#8220;mod1&#8243; ,<br />
    mod1 &#8211; fix(mod1/2)*2 as mod2,<br />
    mod1 &#8211; mod2 as &#8220;related_field&#8221;,<br />
    related_field + 2001 as r1,<br />
    related_field + 2001 + 1 as r2,</p>
<p>    format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;yyyy-mm(mmm)&#8217;) as &#8220;so_Yr_Mth_NN&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;q') as &#8220;so_Qtr&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;yyyy-ww&#8217;) as &#8220;so_Yr_wk&#8221;,<br />
    datepart(&#8217;y',&#8221;some_date&#8221;) as &#8220;so_Yr_Dy&#8221; ,<br />
    &#8220;some_amount&#8221;<br />
    From (<br />
     Select<br />
      she.&#8221;some_date&#8221; ,<br />
      she.&#8221;some_amount&#8221;<br />
     From<br />
      [Sheet1$] she<br />
     )<br />
    as dateColsx<br />
<font style="BACKGROUND-COLOR: #ffff80">    union<br />
select<br />
     &#8220;some_date&#8221;,<br />
    year(&#8221;some_date&#8221;) as &#8220;so_Year&#8221;,<br />
    &#8220;so_Year&#8221; &#8211; 2001 as &#8220;mod1&#8243; ,<br />
    mod1 &#8211; fix(mod1/2)*2 as mod2,<br />
    <strong>mod1 + mod2 -1 as &#8220;related_field&#8221;,</strong><br />
    related_field + 2001 as r1,<br />
    related_field + 2001 + 1 as r2,</font></p>
<p><font style="BACKGROUND-COLOR: #ffff80">    format(&#8221;some_date&#8221;,&#8217;mmm&#8217;) as &#8220;so_Mth_Disp&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;yyyy-mm(mmm)&#8217;) as &#8220;so_Yr_Mth_NN&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;q') as &#8220;so_Qtr&#8221;,<br />
    format(&#8221;some_date&#8221;,&#8217;yyyy-ww&#8217;) as &#8220;so_Yr_wk&#8221;,<br />
    datepart(&#8217;y',&#8221;some_date&#8221;) as &#8220;so_Yr_Dy&#8221; ,<br />
    &#8220;some_amount&#8221;<br />
     From (<br />
     Select<br />
       she.&#8221;some_date&#8221; ,<br />
      she.&#8221;some_amount&#8221;<br />
     From<br />
       [Sheet1$] she<br />
     )<br />
    as dateColsx  <br /></font>    <br />
   ) <br />
  )</p>
<p>)<br />
group by yr</p>
<p><img height="208" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-118.jpg" width="640" align="left" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/pivot-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Dials and Speedometer Scorecard</title>
		<link>http://www.exceldashboard.org/create-dials-and-speedometer-scorecard</link>
		<comments>http://www.exceldashboard.org/create-dials-and-speedometer-scorecard#comments</comments>
		<pubDate>Thu, 19 Aug 2010 21:58:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard Tutorial]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Operational Dashboard]]></category>
		<category><![CDATA[Performance Dashboard]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/create-dials-and-speedometer-scorecard</guid>
		<description><![CDATA[In this article we will take an Excel source containing scorecard information and convert into dials and speedometer charts.
We will also create few bar trending charts.
Consider the below sample data
Source File: You can download the excel file here

&#160;
&#160;
&#160;
&#160;
The above excel file tracks few metrics such as safety, quality and revenue. This is just a sample [...]]]></description>
			<content:encoded><![CDATA[<p>In this article we will take an Excel source containing scorecard information and convert into dials and speedometer charts.</p>
<p>We will also create few bar trending charts.</p>
<p>Consider the below sample data</p>
<p><strong>Source File: You can download the excel</strong> file <a target="_blank" href="http://www.infocaptor.com/files/scorecard.xls">here</a></p>
<p><a href="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-392.jpg"><img height="113" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-392-small.jpg" width="450" align="left" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The above excel file tracks few metrics such as safety, quality and revenue. This is just a sample data and may not make sense in actual world but just imagine a manufacturing company that wants to track its overall safety and quality score and also track its total revenue. Now the company may use its own method at deriving the individual safety and quality scores.</p>
<p>They may have a dedicated team to collect safety violations and product defects and then use some formulae to convert those data into final score for any given month. We are not concerned with any of the methods on how those scores are generated. You are the dashboard person and the company has provided you the metrics by each month and now your job is produce a nice dashboard that shows relevant charts for the given data.</p>
<p>Since the data is tracked for each month, it makes sense to show a line or bar chart trending for the metrics.</p>
<p>Dials and Speedometers are relevant when we need to show performance of a single value. So in this case, since we have 12 month data, how do we show single value on the meter chart?</p>
<p>One solution is to show an &#8216;Average&#8217; value for the safety and Quality metrics or we could show a dial that shows the current month values.</p>
<p>So the GOAL for this exercise is: Show bar chart for Safety trending 12 months and show average and current month value on the dial chart.</p>
<p><strong>Dial chart requirement:</strong> For the dial chart, we are measuring the performance, whether we are on track or missed the goal. In order to achieve that, we create three new columns for safety such as &#8217;safety_bad&#8217;, &#8217;safety_ok&#8217;, safety_good&#8217;. These values need to be decided by the company management. If you are not sure, then look at previous year data and decide what should be good and bad values. The dials are used to guide the company to perform better or atleast improve that portion of the company operation represented by the metric.</p>
<p><img height="232" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-394.jpg" width="473" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>First let us create the date hierarchy columns from the Period column. <strong>You need to make sure that the Period column is an actual Excel date column, else the hierarchy will not be generated<img height="293" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-395.jpg" width="429" align="left" /></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Right click on the period column, select Create -&gt; Add Year, Quarter, Month columns</p>
<p><img height="317" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-396.jpg" width="645" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>As you see we added the year and month columns. We may not use all of the above columns but having them ready gives us the option during the chart building.</p>
<p>Now right click on the &#8220;Name&#8221; and select &#8216;Create Chart&#8221;</p>
<p><img height="255" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-397.jpg" width="328" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img height="302" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-398.jpg" width="625" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We selected the &#8216;Bar&#8217; chart type</p>
<p>For the x-axis we select the month column and for the y &#8211; axis we select the Safety metric</p>
<p>Next, we click on the &#8220;Create Chart&#8221; button</p>
<p>This action takes us to the below dialog</p>
<p><img height="543" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-399.jpg" width="316" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We rename the chart to &#8216;Safety&#8217; and then click on &#8216;Fully Apply&#8217;</p>
<p>This action create the below chart (You may need to move the screens and dialog around to see the chart behind)</p>
<p><img height="330" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-400.jpg" width="455" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Now having the chart wizard open, we change the selection to &#8216;Dial&#8217; chart</p>
<p>Check the Dial chart options below</p>
<p><img height="295" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-402.jpg" width="614" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We modify the options as below</p>
<ul>
<li>You can type the low and high range values for each range on the dial.</li>
<li>In our case, we have defined the safety bad, ok and good values in our spreadsheet so when our goals change, we just change the spreadsheet and the dials will automatically take care. Also, what if we needed different goals for each month so rather than hard coding the range in the chart, we get them from the excel file</li>
</ul>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img height="301" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-401.jpg" width="620" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We first change the label sequence for the &#8220;Region Name&#8221; from &#8220;Bad&#8221; -&gt; &#8220;Warning&#8221; -&gt; to &#8220;Good&#8221;. For the dial chart the labels are not used so make sure that the colors are selected appropriately.</p>
<p><img height="452" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-403.jpg" width="585" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>You may click on the color icon to change the colors of your choice</p>
<p>Next, we select the range boundary values</p>
<p><img height="122" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-407.jpg" width="290" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The safety_bad value from our spreadsheet represents the lower boundary of our bad region, &#8220;safety_ok&#8221; represents the upper boundary of our bad region, similarly &#8217;safety_ok&#8217; is the lower bound for our &#8216;ok&#8217; region and so on. For the &#8216;Good&#8217; upper bound we simply typed a value but as general practice we should have one more column for the upper bound of the final region. In our case the final region is &#8216;Safety Good&#8217;.</p>
<p>Next, for the pointer value, select the column that you want to show on the dial chart. In our case we select &#8216;Safety&#8217; and aggregation as &#8216;Avg&#8217;</p>
<p><img height="179" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-404.jpg" width="168" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Next, we click on &#8220;Create chart&#8221;. This action shows the dialog below</p>
<p><img height="678" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-408.jpg" width="483" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>We change the chart title to &#8216;Average Safety&#8217;</p>
<p>NOTE: remove the double quotes in the SQL statement for the group by. This will cause an error.</p>
<p>Click on &#8216;Fully Apply&#8217;</p>
<p>Here is our final Dial Chart</p>
<p><img height="161" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-409.jpg" width="215" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Next, create a dial chart to show current month value</p>
<p>We will change some conditions on the main Qlet. Right click on the &#8220;Name&#8221; and select &#8216;Duplicate&#8217;</p>
<p><img height="256" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-410.jpg" width="305" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>It creates an exact copy of the qlet table. We change the name to &#8216;Current Month&#8217;</p>
<p><img height="146" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-411.jpg" width="200" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Right click on the &#8216;Period&#8217; column and select &#8216;Create&#8217; -&gt; Create Date Filter</p>
<p><img height="315" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-412.jpg" width="387" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>This action shows a dialog as shown below</p>
<p><img height="232" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-413.jpg" width="535" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>First change the operator to &#8216;Between&#8217;</p>
<p>Next select &#8216;First Day of Month&#8217; for the from and &#8216;Last Day of Month&#8217; for the To val.</p>
<p>Click on &#8216;Use This Filter&#8217;</p>
<p>This action applies the filter to the Qlet and it shows only currrent month row</p>
<p><img height="355" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-414.jpg" width="571" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Next, right click on &#8216;Current Month&#8217; and select &#8216;Create Chart&#8217;</p>
<p>All of the settings remain the same except the &#8216;Aggregation&#8217;, make sure to select &#8216;NONE&#8217;</p>
<p><img height="299" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-415.jpg" width="623" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><img height="159" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-416.jpg" width="224" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Once all the three charts are done, we arrange them as below</p>
<p><img height="255" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/08/image-417.jpg" width="1021" align="left" /></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Similarly, you may create the charts for &#8220;Quality&#8221; and &#8220;Revenue&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/create-dials-and-speedometer-scorecard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Dashboards &#8211; Fiscal Quarter, Fiscal Month</title>
		<link>http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month</link>
		<comments>http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month#comments</comments>
		<pubDate>Mon, 17 May 2010 23:43:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CFO Dashboard]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month</guid>
		<description><![CDATA[When you use the Add Date hierarchy columns for any date, by default it brings all calendar quarter and calendar month.

&#160;
How do you get Fiscal Quarter
Let say your fiscal year begins from 1st July then
First Quarter = { 7 , 8 , 9}
Second Quarter = { 10, 11, 12}
Third Quarter = {1, 2, 3}
Fourth Quarter [...]]]></description>
			<content:encoded><![CDATA[<p>When you use the Add Date hierarchy columns for any date, by default it brings all calendar quarter and calendar month.</p>
<p><img height="426" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/05/image-96.jpg" width="528" /></p>
<p>&nbsp;</p>
<p><strong>How do you get Fiscal Quarter</strong></p>
<p><strong>Let say your fiscal year begins from 1st July then</strong></p>
<p><strong>First Quarter = { 7 , 8 , 9}</strong></p>
<p><strong>Second Quarter = { 10, 11, 12}</strong></p>
<p><strong>Third Quarter = {1, 2, 3}</strong></p>
<p><strong>Fourth Quarter = { 4, 5, 6 }</strong></p>
<p><strong>So with the above logic let us create a formula</strong></p>
<ul>
<li>Right click on the date column</li>
<li>Select &#8220;Create Calculation&#8221;</li>
<li><img height="319" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/05/image-97.jpg" width="483" /></li>
<li>Type the following formula</li>
<li><font style="BACKGROUND-COLOR: #ffff00">switch(<br />
month(&#8221;Order Date&#8221;) in (7,8,9) , &#8216;Qtr1&#8242; ,<br />
 month(&#8221;Order Date&#8221;) in (10,11,12) , &#8216;Qtr2&#8242; ,<br />
 month(&#8221;Order Date&#8221;) in (1,2,3) , &#8216;Qtr3&#8242; ,<br />
 month(&#8221;Order Date&#8221;) in (4,5,6) , &#8216;Qtr4&#8242;<br />
 )</font></li>
<li>Click on &#8216;Use This Formula&#8217;</li>
</ul>
<p>Here is the Fiscal Quarter</p>
<p><img height="305" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/05/image-98.jpg" width="181" /></p>
<p><strong>Note: You can change the Quarter text to anything like &#8216;Q1&#8242; instead of &#8216;Qtr1&#8242;</strong></p>
<p><strong>Fiscal Month</strong></p>
<p>Similarly, if you need fiscal month, we can use the following formula</p>
<p><font style="BACKGROUND-COLOR: #ffff80">switch(<br />
month(&#8221;Order Date&#8221;) &gt;= 7 , month(&#8221;Order Date&#8221;)-6 ,<br />
month(&#8221;Order Date&#8221;) &lt; 7 , month(&#8221;Order Date&#8221;) + 6<br />
)</font></p>
<p><strong>Fiscal Year</strong></p>
<p><font style="BACKGROUND-COLOR: #ffff80"><strong>switch(<br />
month(&#8221;Order Date&#8221;) &gt;= 7 , year(&#8221;Order Date&#8221;) ,<br />
month(&#8221;Order Date&#8221;) &lt; 7 , year(&#8221;Order Date&#8221;) &#8211; 1<br />
)</strong></font></p>
<p>&nbsp;</p>
<p>If you have a different Fiscal year begining then replace the numbers accordingly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Dashboards for Web</title>
		<link>http://www.exceldashboard.org/excel-dashboards-for-web</link>
		<comments>http://www.exceldashboard.org/excel-dashboards-for-web#comments</comments>
		<pubDate>Tue, 30 Mar 2010 02:21:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/excel-dashboards-for-web</guid>
		<description><![CDATA[Put your Excel Dashboards on the web
Create your excel dashboards on Desktop and then easily put them on the web or intranet.
Download the web dashboard files

Web Dashboard Documentation

The documentation is a complete printable reference guide for converting desktop to web dashboard and has a reference section for chart properties to create advanced charts.
Download web dashboard [...]]]></description>
			<content:encoded><![CDATA[<p>Put your Excel Dashboards on the web</p>
<p><strong>Create your excel dashboards on Desktop and then easily put them on the web or intranet.</strong></p>
<p>Download the web dashboard files</p>
<ul>
<li><a target="_blank" href="http://infocaptor.s3.amazonaws.com/webdashboard_reference.pdf">Web Dashboard Documentation</a></li>
</ul>
<p>The documentation is a complete printable reference guide for converting desktop to web dashboard and has a reference section for chart properties to create advanced charts.</p>
<p>Download web dashboard software</p>
<ul>
<li>The link to the web dashboard software is provided within the above documentation link.</li>
<li><a target="_blank" href="https://s3.amazonaws.com/infocaptor/webdashboards.zip">download web dashboard software</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/excel-dashboards-for-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel ODBC &#8211; Access ODBC</title>
		<link>http://www.exceldashboard.org/excel-odbc-access-odbc</link>
		<comments>http://www.exceldashboard.org/excel-odbc-access-odbc#comments</comments>
		<pubDate>Fri, 26 Mar 2010 16:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/excel-odbc-access-odbc</guid>
		<description><![CDATA[Alternative Video Tutorial or Follow the steps below
Sometimes, due to some improper setup of Microsoft Excel or incomplete components for Microsoft Office, direct connection to Excel files may not be possible.
This tutorial provides an alternative method to connect to the Excel Files. This method also applies to any new format of Excel Files or Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.exceldashboard.org/odbc_connection.htm"<strong>>Alternative Video Tutoria</strong>l</a> or Follow the steps below</p>
<p>Sometimes, due to some improper setup of Microsoft Excel or incomplete components for Microsoft Office, direct connection to Excel files may not be possible.</p>
<p>This tutorial provides an alternative method to connect to the Excel Files. This method also applies to any new format of Excel Files or <strong>Microsoft Access databases (ie. mdb or .accdb)</strong></p>
<p>Steps to Create DSN for ODBC connection</p>
<p>1. Click on the Start menu and click on the Control Panel</p>
<p><img height="230" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-81.jpg" width="647" /></p>
<p>&nbsp;</p>
<p>2. Click on the &#8220;Administrative Tools&#8221;.</p>
<p>NOTE: You may need to &#8220;Switch to Classic View&#8221; in windows Vista or newer version of your windows operating system</p>
<p><img height="331" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-82.jpg" width="623" /></p>
<p>&nbsp;</p>
<p>3. Click on the &#8220;Data Sources (ODBC)&#8221; setup icon</p>
<p><img height="262" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-83.jpg" width="615" /></p>
<p>&nbsp;</p>
<p>4. Click on &#8220;Add&#8221;</p>
<p><img height="383" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-84.jpg" width="508" /></p>
<p>&nbsp;</p>
<p>5. Select .xls, .xlsx .xlsm .xlsb option if you are using the latest Excel version and format of Excel</p>
<p><img height="288" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-85.jpg" width="658" /></p>
<p>6.We will select the normal .XLS version since this northwind.xls file was created using old format</p>
<p><img height="194" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-86.jpg" width="679" /></p>
<p>7. Give a short and simple name to this DSN entry</p>
<p><img height="388" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-87.jpg" width="699" /></p>
<p><img height="238" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-88.jpg" width="429" /></p>
<p>&nbsp;</p>
<p>8. Now select and point this DSN name to the appropriate Excel file</p>
<p><img height="250" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-89.jpg" width="671" /></p>
<p>9. <img height="252" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-90.jpg" width="788" /></p>
<p>10. select the file and click OK. Close all the dialogs.</p>
<p>11. Now go back to InfoCaptor connection wizard</p>
<p><img height="153" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-91.jpg" width="473" /></p>
<p>12. Select the &#8220;ODBC&#8221; option now instead of the &#8220;Excel&#8221; option</p>
<p><img height="243" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-92.jpg" width="521" /></p>
<p>13. Give some simple name to this connection so that InfoCaptor can easily remember it</p>
<p><img height="222" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-93.jpg" width="477" /></p>
<p>14. Type the ODBC name that was defined in the ODBC DSN setup screen previously</p>
<p><img height="366" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-94.jpg" width="517" /></p>
<p>15. <img height="291" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-95.jpg" width="523" /></p>
<p>Click on the Connect button and then you can proceed the remaining of this tutorial after the connection part</p>
<h2><a target="_blank" href="https://s3.amazonaws.com/infocaptor/Dashboard_Tutorial.pdf">Free Dashboard PDF Tutorial</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/excel-odbc-access-odbc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build Excel Dashboards &#8211; 12</title>
		<link>http://www.exceldashboard.org/how-to-build-excel-dashboards-12</link>
		<comments>http://www.exceldashboard.org/how-to-build-excel-dashboards-12#comments</comments>
		<pubDate>Thu, 04 Mar 2010 21:27:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Excel Charts]]></category>
		<category><![CDATA[Excel Functions]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Operational Dashboard]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/how-to-build-excel-dashboards-12</guid>
		<description><![CDATA[Previous &#8211; Excel Dashboard Tutorial  &#8211; 11
How do you share your Excel Dashboard with users?
Now that you have built the dashboard, you can share the dashboard in multiple ways.

&#8221; Create a PDF output of the dashboard and send as email attachment.
Click on the PDF icon on the toolbar as shown below and it will [...]]]></description>
			<content:encoded><![CDATA[<p>Previous &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-11">Excel Dashboard Tutorial </a> &#8211; 11</p>
<p><strong>How do you share your Excel Dashboard with users?</strong></p>
<p>Now that you have built the dashboard, you can share the dashboard in multiple ways.</p>
<p>
&#8221; <strong>Create a PDF output of the dashboard and send as email attachment</strong>.</p>
<p>Click on the PDF icon on the toolbar as shown below and it will instantly create a PDF output<br />
<img height="194" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/dashboardaspdf.jpg" width="689" /></p>
<p>&nbsp;</p>
<p>PDF output</p>
<p><img height="391" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/dashboard_pdf_output.jpg" width="665" /></p>
<p>&nbsp;</p>
<p>&#8221; Create Static HTML output. Click on the HTML icon on the toolbar. This option creates a static html page that you can put in on the web. Users cannot interact with the dashboard. It is just a snapshot image of the dashboard at the time the output was generated. It does not refresh automatically. You will need to regerate the output again when the data is refreshed.</p>
<p>
&#8221; Desktop Sharing. You can put the dashboard definition file (icv) on a file share directory and other users can view the dashboard through the Dashboard viewer. You may need separate license for dashboard viewers for desktop.</p>
<p><img height="244" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-79.jpg" width="292" /></p>
<p>Go to Menu Create &#8216; Publish to web and it will generate a file that you can put it where the dashboard web server is and it will render the output. The look and feel is different with this option</p>
<p><a href="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-80.jpg"><img height="274" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-80-small.jpg" width="450" /></a></p>
<p>The web version is using a flash charting engine to the desktop Java chart engine.<br />
Details of converting the desktop to web version are not covered in the document. Please refer online at any of our websites for more details</p>
<p>
You can download the <a target="_blank" href="https://s3.amazonaws.com/infocaptor/Dashboard_Tutorial.pdf">complete tutorial as PDF</a><br />
&#8221; Web Sharing: In this option, you can publish the dashboard to web and the dashboard is available real time with all the dashboard parameters and refresh actions</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/how-to-build-excel-dashboards-12/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to build Excel Dashboards &#8211; 11</title>
		<link>http://www.exceldashboard.org/how-to-build-excel-dashboards-11</link>
		<comments>http://www.exceldashboard.org/how-to-build-excel-dashboards-11#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:26:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard Tutorial]]></category>
		<category><![CDATA[Excel Charts]]></category>
		<category><![CDATA[Excel Functions]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Operational Dashboard]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/how-to-build-excel-dashboards-11</guid>
		<description><![CDATA[Previous &#8211; Excel Dashboard Tutorial

Summary
We built the above dashboard completely from scratch.

We defined Calculations
We defined date hierarchies
We built Date Filters
We built Date Parameters
We built Bar Charts
We built Pie Charts
We cleaned the dashboard layout

Next &#8211; Share Excel Dashboard with other Users 
]]></description>
			<content:encoded><![CDATA[<p>Previous &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-10">Excel Dashboard Tutorial</a></p>
<p><a href="http://www.exceldashboard.org/wp-content/uploads/2010/03/ordermanagementexceldashboard.jpg"><img height="531" alt="Sales Dashboard using Excel" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/ordermanagementexceldashboard-small.jpg" width="450" /></a></p>
<p>Summary</p>
<p>We built the above dashboard completely from scratch.</p>
<ul>
<li>We defined Calculations</li>
<li>We defined date hierarchies</li>
<li>We built Date Filters</li>
<li>We built Date Parameters</li>
<li>We built Bar Charts</li>
<li>We built Pie Charts</li>
<li>We cleaned the dashboard layout</li>
</ul>
<p>Next &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-12">Share Excel Dashboard with other Users</a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/how-to-build-excel-dashboards-11/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to build Excel Dashboards &#8211; 10</title>
		<link>http://www.exceldashboard.org/how-to-build-excel-dashboards-10</link>
		<comments>http://www.exceldashboard.org/how-to-build-excel-dashboards-10#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:18:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard Tutorial]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Operational Dashboard]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/how-to-build-excel-dashboards-10</guid>
		<description><![CDATA[Previous &#8211; Excel Dashboard Tutorial &#8211; 9
Cleanup &#8211; Resize and Organize
Give appropriate names to each portlet.
During the chart creation if we did not provide names, now is the time to provide them.
Right click on each title and click on &#8220;Edit&#8221;


&#160;
Scale down the Size

&#160;
Note, you can drag the corners of each portlet to resize the frames [...]]]></description>
			<content:encoded><![CDATA[<p>Previous &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-9">Excel Dashboard Tutorial</a> &#8211; 9</p>
<p><strong>Cleanup &#8211; Resize and Organize</strong></p>
<p>Give appropriate names to each portlet.<br />
During the chart creation if we did not provide names, now is the time to provide them.<br />
Right click on each title and click on &#8220;Edit&#8221;</p>
<p>
<img height="224" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-72.jpg" width="659" /></p>
<p>&nbsp;</p>
<p><strong>Scale down the Size</strong></p>
<p><img height="800" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-73.jpg" width="1280" /></p>
<p>&nbsp;</p>
<p>Note, you can drag the corners of each portlet to resize the frames and drag the title name to place them on the canvas</p>
<p>
<strong>Screen real-estate</strong> is very important when designing any dashboard or web application. For better space utilization, we will convert the standard pie to a 3D view</p>
<p><img height="282" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-74.jpg" width="583" /></p>
<p>Also, while arranging the objects, keep the most important charts on the top and left area. Put all the detailed portlets at the bottom.</p>
<p><strong><u>Avoid horizontal scrolling</u></strong></p>
<p>Remember, do not put any objects on the right side of the scroll bar. Always, keep the scrolling to vertical as it is convienient for viewing.</p>
<p><img height="397" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-75.jpg" width="266" /></p>
<p>The above layout will cause for horizontal scrolling and is not a good practice.<br />
Once you do the basic layout of placing the portlets so that they are distinctly visible, it becomes easy to use the resizing options within the tool.</p>
<p>
Navigate to Edit &#8216; Resize Mode</p>
<p><img height="225" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-76.jpg" width="650" /></p>
<p>Once in the resize mode, you can select each object and they are enabled for group resize and placement</p>
<p>Select all the parameters on the top and we will align the top edges with respect to the first one.</p>
<p><img height="196" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-77.jpg" width="542" /></p>
<p>As you see, each plet is shown in red with a bar on top indicating it is selected for alignment<br />
One more, thing, you can also turn the Grid mode to see a guide for your alignment and placement</p>
<p>Goto Edit &#8216; Show Grid</p>
<p>
<img height="324" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-78.jpg" width="564" /></p>
<p>Note: Once you are done with resize and align with one set of objects, make sure to deselect them before working on the next set of objects</p>
<blockquote>
<p>It is best practice to first resize all the objects. All objects on the same horizontal line should have the same height. Select the optimum height of any object on that particular horizontal line and then right click on the title and resize the height of all the selected ones. Then apply the alignment -&gt; Top , deselect the objects and start with the objects in the next horizontal line.</p>
</blockquote>
<p>This completes our basic dashboard which is dynamic and extremely informative.<br />
If you need to further customize the look and feel please refer to our online tutorial and reference section<br />
<a target="_blank" href="http://www.infocaptor.com/user_help/bi-dashboard-help.htm">http://www.infocaptor.com/user_help/bi-dashboard-help.htm</a></p>
<p>
Next &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-11">Excel Dashboard &#8211; Complete Order Management Dashboard</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/how-to-build-excel-dashboards-10/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to build Excel Dashboards &#8211; 9</title>
		<link>http://www.exceldashboard.org/how-to-build-excel-dashboards-9</link>
		<comments>http://www.exceldashboard.org/how-to-build-excel-dashboards-9#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:05:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard Tutorial]]></category>
		<category><![CDATA[Excel Charts]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/how-to-build-excel-dashboards-9</guid>
		<description><![CDATA[Previous &#8211; Excel Dashboard Tutorial  &#8211; 8
Finish the Dashboard Design and Development
By now, your dashboard is quite chaotic. You have objects all around your dashboard canvas with different sizes. We will start the process of finishing our design.

&#160;
Before proceeding, we save a copy of the dashboard.

Navigate to menu File &#8216; Save As


&#160;
Give a name [...]]]></description>
			<content:encoded><![CDATA[<p>Previous &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-8">Excel Dashboard Tutorial </a> &#8211; 8</p>
<p><strong>Finish the Dashboard Design and Development</strong></p>
<p>By now, your dashboard is quite chaotic. You have objects all around your dashboard canvas with different sizes. We will start the process of finishing our design.</p>
<p><img height="432" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-64.jpg" width="844" /></p>
<p>&nbsp;</p>
<p>Before proceeding, we save a copy of the dashboard.</p>
<p>
Navigate to menu File &#8216; Save As</p>
<p>
<img height="363" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-65.jpg" width="508" /></p>
<p>&nbsp;</p>
<p>Give a name to the file so that you can identify the raw dashboard definition file.</p>
<p>
Click on Save.</p>
<p>
Next, go to menu File =&gt; Close All</p>
<p><img height="306" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-66.jpg" width="212" /></p>
<p><img height="422" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-67.jpg" width="747" /></p>
<p>Note that there are no dashboards to view.</p>
<p>
If you need more backup copies to be created or create different versions of the same dashboard definition, then go to the File Explorer, select the file and type &#8211; Ctrl-C, and then Ctrl-V</p>
<p>
<img height="73" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-68.jpg" width="437" /></p>
<p>Now, Click on the File &#8216; Open<br />
Select the file &#8220;Order Management Analytics.icv&#8221;<br />
<img height="367" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-69.jpg" width="623" /></p>
<p>Note that we are not touching the &#8211; Initial Copy file.<br />
Click on Open</p>
<p>
<strong>Get rid of objects you don&#8217;t need</strong><br />
We don&#8217;t need the initial table portlet, so we will delete that.</p>
<p>
Select the &#8220;Name&#8221; portlet and then click on the &#8220;Scissor&#8217; icon on the toolbar</p>
<p><img height="265" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-70.jpg" width="489" /></p>
<p><img height="121" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-71.jpg" width="657" /></p>
<p>&nbsp;</p>
<p>Click &#8220;Yes&#8221; to confirm.</p>
<p>
Note, we created the backup copy of the dashboard so don&#8217;t worry if you mess up the dashboard. You can always go back to the original and start again.</p>
<p>
Similarly remove all objects that you don&#8217;t need it.</p>
<p>Next &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-10">Excel Dashboard Tutorial </a> &#8211; Arrange objects in sizing and alignment</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/how-to-build-excel-dashboards-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to build Excel Dashboards &#8211; 8</title>
		<link>http://www.exceldashboard.org/how-to-build-excel-dashboards-8</link>
		<comments>http://www.exceldashboard.org/how-to-build-excel-dashboards-8#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:58:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard Tutorial]]></category>
		<category><![CDATA[Excel Charts]]></category>
		<category><![CDATA[Excel Functions]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://www.exceldashboard.org/how-to-build-excel-dashboards-8</guid>
		<description><![CDATA[Previous &#8211; Excel Dashboard Tutorial &#8211; 7
Create Pie Chart
We will now create a pie chart by product name

&#160;

&#160;
It is nice to know that the revenue distribution is not dominated by a single product.

We can now change the &#8220;Category name parameter&#8221; to see the product distribution for other category

By Category = Beverages

Summary of steps so far
&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>Previous &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-7">Excel Dashboard Tutorial</a> &#8211; 7</p>
<p><strong>Create Pie Chart</strong></p>
<p>We will now create a pie chart by product name</p>
<p><img height="292" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-60.jpg" width="705" /></p>
<p>&nbsp;</p>
<p><img height="416" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-61.jpg" width="663" /></p>
<p>&nbsp;</p>
<p>It is nice to know that the revenue distribution is not dominated by a single product.</p>
<p>
We can now change the &#8220;Category name parameter&#8221; to see the product distribution for other category</p>
<p><img height="466" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-62.jpg" width="662" /></p>
<p>By Category = Beverages</p>
<p><img height="463" alt="Image" src="http://www.exceldashboard.org/wp-content/uploads/2010/03/image-63.jpg" width="663" /></p>
<p><strong>Summary of steps so far</strong><br />
&#8221; Create a foundation table portlet (Qlet)<br />
&#8221; Add Calculations and any derived columns<br />
&#8221; Add Date hierarchy columns as needed<br />
&#8221; Create Date parameters if needed<br />
&#8221; Create drop down list of values as parameters<br />
&#8221; Create charts using the base Qlet<br />
&#8221; Delete the foundation portlet when not needed and you are done with the dashboard design<br />
&#8221; Arrange the remaining portlets in desired format.</p>
<p>
Once you are done with all the Qlets (query/table portlet)  and Glets (graphic portlets), it is advisable to save the dashboard file, copy the file and work on the new file for finishing and polishing the dashboard.</p>
<p>Next &#8211; <a href="http://www.exceldashboard.org/how-to-build-excel-dashboards-9">Excel Dashboard Tutorial</a> &#8211; 9</p>
]]></content:encoded>
			<wfw:commentRss>http://www.exceldashboard.org/how-to-build-excel-dashboards-8/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
