<?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>Free Excel Dashboards</title>
	<atom:link href="http://www.freeexceldashboard.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.freeexceldashboard.com</link>
	<description>Excel Dashboard Templates &#124; Dashboard Software</description>
	<lastBuildDate>Thu, 26 Aug 2010 02:24:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Pivot Table</title>
		<link>http://www.freeexceldashboard.com/pivot-table-2</link>
		<comments>http://www.freeexceldashboard.com/pivot-table-2#comments</comments>
		<pubDate>Thu, 26 Aug 2010 02:24:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/pivot-table-2</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, looks ahead , get the next year value and sums it up and shows as a unique row.
&#160;

&#160;
&#160;
&#160;
So the end result should be a pivot table that has 2008 and 2009 values summed up, 2009 and 2010 summed up.
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.
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.
On the dashboard, we can create ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/pivot-table' rel='bookmark' title='Permanent Link: Pivot Table'>Pivot Table</a> <small>Let say you have your data in the following format...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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 />
    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,</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&#8217;) 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&#8217;,&#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  </p>
<p>   ) <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>
<p>For more information visit <a href=http://www.exceldashboard.org/pivot-table>Pivot Table</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/pivot-table' rel='bookmark' title='Permanent Link: Pivot Table'>Pivot Table</a> <small>Let say you have your data in the following format...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/pivot-table-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pivot Table</title>
		<link>http://www.freeexceldashboard.com/pivot-table</link>
		<comments>http://www.freeexceldashboard.com/pivot-table#comments</comments>
		<pubDate>Thu, 26 Aug 2010 02:24:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/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, looks ahead , get the next year value and sums it up and shows as a unique row.
&#160;

&#160;
&#160;
&#160;
So the end result should be a pivot table that has 2008 and 2009 values summed up, 2009 and 2010 summed up.
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.
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.
On the dashboard, we can create ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/pivot-table-2' rel='bookmark' title='Permanent Link: Pivot Table'>Pivot Table</a> <small>Let say you have your data in the following format...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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&#8217;) 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&#8217;,&#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 />
    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,</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&#8217;) 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&#8217;,&#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  </p>
<p>   ) <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>
<p>For more information visit <a href=http://www.exceldashboard.org/pivot-table>Pivot Table</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/pivot-table-2' rel='bookmark' title='Permanent Link: Pivot Table'>Pivot Table</a> <small>Let say you have your data in the following format...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/pivot-table/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Dials and Speedometer Scorecard</title>
		<link>http://www.freeexceldashboard.com/create-dials-and-speedometer-scorecard</link>
		<comments>http://www.freeexceldashboard.com/create-dials-and-speedometer-scorecard#comments</comments>
		<pubDate>Thu, 26 Aug 2010 02:23:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/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 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.
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 ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-7' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 7'>How to build Excel Dashboards – 7</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 6 Create Bar Chart...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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>
<p>For more information visit <a href=http://www.exceldashboard.org/create-dials-and-speedometer-scorecard>Create Dials and Speedometer Scorecard</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-7' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 7'>How to build Excel Dashboards – 7</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 6 Create Bar Chart...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/create-dials-and-speedometer-scorecard/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Dashboard Development and Consultation</title>
		<link>http://www.freeexceldashboard.com/free-dashboard-development-and-consultation</link>
		<comments>http://www.freeexceldashboard.com/free-dashboard-development-and-consultation#comments</comments>
		<pubDate>Tue, 08 Jun 2010 14:10:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/free-dashboard-development-and-consultation</guid>
		<description><![CDATA[Download a Dashboard Tool and then what?
You have been researching Dashboard and reporting tools and there are so many options available on the market.
Some tools are just PDF tutorials that tell you to build Excel templates and use Excel as dashboarding tool and some tools are way too expensive.
You don&#8217;t want tools, you need solution for your current problem
In order to better facilitate and break the inertia of learning any dashboard tool, we are offering &#8220;Free Dashboard development and Consultation&#8221;
&#160;

Free Dashboard development and Consultation
For very limited time, when you make a purchase you get free 60 mins of dashboard development/consultation. Once you request for the meeting, we will schedule a time and send you a webex or Gotomeeting invitation to join the meeting. We want to make sure you really get started building your dashboard.
So Act Now

For more information visit Free Dashboard Development and Consultation


Related posts:Is this Dashboard Tool right ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you' rel='bookmark' title='Permanent Link: Is this Dashboard Tool right for you?'>Is this Dashboard Tool right for you?</a> <small> If it is the right Dashboard tool, are YOU...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-sample-advice-about-using-excel%e2%80%99s-camera-tool-2' rel='bookmark' title='Permanent Link: Excel Dashboard Sample: Advice about Using Excel’s Camera Tool'>Excel Dashboard Sample: Advice about Using Excel’s Camera Tool</a> <small>Of all the Excel features that users don&#8217;t use very...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-sample-advice-about-using-excel%e2%80%99s-camera-tool' rel='bookmark' title='Permanent Link: Excel Dashboard Sample: Advice about Using Excel’s Camera Tool'>Excel Dashboard Sample: Advice about Using Excel’s Camera Tool</a> <small>Of all the Excel features that users don&#8217;t use very...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<h2>Download a Dashboard Tool and then what?</h2>
<p>You have been researching Dashboard and reporting tools and there are so many options available on the market.</p>
<p>Some tools are just PDF tutorials that tell you to build Excel templates and use Excel as dashboarding tool and some tools are way too expensive.</p>
<h2>You don&#8217;t want tools, you need solution for your current problem</h2>
<p>In order to better facilitate and break the inertia of learning any dashboard tool, we are offering &#8220;Free Dashboard development and Consultation&#8221;</p>
<p>&nbsp;</p>
<div>
<p><strong>Free Dashboard development and Consultation</strong></p>
<p>For very limited time, when you make a purchase you get free 60 mins of dashboard development/consultation. Once you request for the meeting, we will schedule a time and send you a webex or Gotomeeting invitation to join the meeting. We want to make sure you really get started building your dashboard.<br />
<strong><a target="_blank" href="https://www.plimus.com/jsp/buynow.jsp?contractId=1690452">So Act Now<img src="http://www.exceldashboard.org/wp-content/uploads/2009/09/buy_now.png" /></a></strong></p>
</div>
<p>For more information visit <a href=http://www.exceldashboard.org/free-dashboard-development-and-consultation>Free Dashboard Development and Consultation</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you' rel='bookmark' title='Permanent Link: Is this Dashboard Tool right for you?'>Is this Dashboard Tool right for you?</a> <small> If it is the right Dashboard tool, are YOU...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-sample-advice-about-using-excel%e2%80%99s-camera-tool-2' rel='bookmark' title='Permanent Link: Excel Dashboard Sample: Advice about Using Excel’s Camera Tool'>Excel Dashboard Sample: Advice about Using Excel’s Camera Tool</a> <small>Of all the Excel features that users don&#8217;t use very...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-sample-advice-about-using-excel%e2%80%99s-camera-tool' rel='bookmark' title='Permanent Link: Excel Dashboard Sample: Advice about Using Excel’s Camera Tool'>Excel Dashboard Sample: Advice about Using Excel’s Camera Tool</a> <small>Of all the Excel features that users don&#8217;t use very...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/free-dashboard-development-and-consultation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Dashboards – Fiscal Quarter, Fiscal Month</title>
		<link>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2</link>
		<comments>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2#comments</comments>
		<pubDate>Wed, 19 May 2010 17:42:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2</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 = { 4, 5, 6 }
So with the above logic let us create a formula

Right click on the date column
Select &#8220;Create Calculation&#8221;

Type the following formula
switch(
month(&#8221;Order Date&#8221;) in (7,8,9) , &#8216;Qtr1&#8242; ,
 month(&#8221;Order Date&#8221;) in (10,11,12) , &#8216;Qtr2&#8242; ,
 month(&#8221;Order Date&#8221;) in (1,2,3) , &#8216;Qtr3&#8242; ,
 month(&#8221;Order Date&#8221;) in (4,5,6) , &#8216;Qtr4&#8242;
 )
Click on &#8216;Use This Formula&#8217;

Here is the Fiscal Quarter

Note: You can change the Quarter text to anything like &#8216;Q1&#8242; instead of &#8216;Qtr1&#8242;
Fiscal Month
Similarly, if you need fiscal month, we can use the following formula
switch(
month(&#8221;Order Date&#8221;) &#62;= 7 , month(&#8221;Order Date&#8221;)-6 ,
month(&#8221;Order Date&#8221;) &#60; 7 ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-date-functions' rel='bookmark' title='Permanent Link: Excel Date Functions'>Excel Date Functions</a> <small>In the information jungle for Excel, when it comes to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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>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 />
 )</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>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 />
)</p>
<p><strong>Fiscal Year</strong></p>
<p><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></p>
<p>&nbsp;</p>
<p>If you have a different Fiscal year begining then replace the numbers accordingly.</p>
<p>For more information visit <a href=http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month>Excel Dashboards – Fiscal Quarter, Fiscal Month</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-date-functions' rel='bookmark' title='Permanent Link: Excel Date Functions'>Excel Date Functions</a> <small>In the information jungle for Excel, when it comes to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Dashboards – Fiscal Quarter, Fiscal Month</title>
		<link>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month</link>
		<comments>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month#comments</comments>
		<pubDate>Wed, 19 May 2010 17:42:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-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 = { 4, 5, 6 }
So with the above logic let us create a formula

Right click on the date column
Select &#8220;Create Calculation&#8221;

Type the following formula
switch(
month(&#8221;Order Date&#8221;) in (7,8,9) , &#8216;Qtr1&#8242; ,
 month(&#8221;Order Date&#8221;) in (10,11,12) , &#8216;Qtr2&#8242; ,
 month(&#8221;Order Date&#8221;) in (1,2,3) , &#8216;Qtr3&#8242; ,
 month(&#8221;Order Date&#8221;) in (4,5,6) , &#8216;Qtr4&#8242;
 )
Click on &#8216;Use This Formula&#8217;

Here is the Fiscal Quarter

Note: You can change the Quarter text to anything like &#8216;Q1&#8242; instead of &#8216;Qtr1&#8242;
Fiscal Month
Similarly, if you need fiscal month, we can use the following formula
switch(
month(&#8221;Order Date&#8221;) &#62;= 7 , month(&#8221;Order Date&#8221;)-6 ,
month(&#8221;Order Date&#8221;) &#60; 7 ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-date-functions' rel='bookmark' title='Permanent Link: Excel Date Functions'>Excel Date Functions</a> <small>In the information jungle for Excel, when it comes to...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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>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 />
 )</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>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 />
)</p>
<p><strong>Fiscal Year</strong></p>
<p><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></p>
<p>&nbsp;</p>
<p>If you have a different Fiscal year begining then replace the numbers accordingly.</p>
<p>For more information visit <a href=http://www.exceldashboard.org/excel-dashboards-fiscal-quarter-fiscal-month>Excel Dashboards – Fiscal Quarter, Fiscal Month</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month-2' rel='bookmark' title='Permanent Link: Excel Dashboards – Fiscal Quarter, Fiscal Month'>Excel Dashboards – Fiscal Quarter, Fiscal Month</a> <small>When you use the Add Date hierarchy columns for any...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-5' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 5'>How to build Excel Dashboards – 5</a> <small>Previous Article &#8211; Create Excel Dashboards &#8211; 4 Add Date...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-date-functions' rel='bookmark' title='Permanent Link: Excel Date Functions'>Excel Date Functions</a> <small>In the information jungle for Excel, when it comes to...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/excel-dashboards-%e2%80%93-fiscal-quarter-fiscal-month/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is this Dashboard Tool right for you?</title>
		<link>http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you</link>
		<comments>http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you#comments</comments>
		<pubDate>Wed, 19 May 2010 17:42:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you</guid>
		<description><![CDATA[
If it is the right Dashboard tool, are YOU prepared to make the time commitment?
Excel Dashboard Desinger is a versatile tool and here is a brief summary of all the things you can do.
Do you want your Dashboard Software to perform the following basic things?

Build dashboard from multiple Excel files
Build Tables, Pivots
Build Drop down parameters
Build Charts
Drill Down into details
Export Dashboards to PDF and send it as email attachments

NOTE: When you connect to any Excel file, each worksheet in the Excel file is available as individual table and you can pull information from any worksheet.
Do not take our word, Check out individual Dashboard Examples

&#160;
&#160;
&#160;
&#160;
&#160;
&#160;
&#160;


&#160;
&#160;
&#160;
&#160;
&#160;
&#160;
&#160;
or How about doing the following things?

Connect to multiple Excel Files
Build Dials, Gauges, Speedometers and Thermometers
Customize the look and feel of tables and charts

Example:
Customize Bar chart colors based on value. If the value is less than 10 then make it red, if it is above 100 then make ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/simple-and-elegant-dashboards-with-excel' rel='bookmark' title='Permanent Link: Simple and Elegant Dashboards with Excel'>Simple and Elegant Dashboards with Excel</a> <small>Best Practice for Developing dashboards with Microsoft Excel Here is...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-software' rel='bookmark' title='Permanent Link: Excel Dashboard Software'>Excel Dashboard Software</a> <small>This page provides all the download files related to Excel...</small></li>
<li><a href='http://www.freeexceldashboard.com/free-dashboard-development-and-consultation' rel='bookmark' title='Permanent Link: Free Dashboard Development and Consultation'>Free Dashboard Development and Consultation</a> <small>Download a Dashboard Tool and then what? You have been...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><DIV></p>
<h1>If it is the right Dashboard tool, are YOU prepared to make the time commitment?</h1>
<p>Excel Dashboard Desinger is a versatile tool and here is a brief summary of all the things you can do.</p>
<h2><strong>Do you want your Dashboard Software to perform the following basic things?</strong></h2>
<ul>
<li>Build dashboard from <strong>multiple</strong> Excel files</li>
<li>Build Tables, Pivots</li>
<li>Build <strong>Drop down parameters</strong></li>
<li>Build Charts</li>
<li>Drill Down into details</li>
<li><strong>Export Dashboards to PDF</strong> and send it as <strong>email attachments</strong></li>
</ul>
<p>NOTE: When you connect to any Excel file, each worksheet in the Excel file is available as individual table and you can pull information from any worksheet.</p>
<div>Do not take our word, Check out individual <strong>Dashboard Examples</strong></div>
<p><a target="_blank" href="http://farm4.static.flickr.com/3280/3046716656_fc3e02d65c_o.png"><img height="174" alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2008/11/image-312.jpg" width="240" align="left" /></a><a target="_blank" href="http://farm4.static.flickr.com/3006/3046716738_6a1e87dbcf_o.png"><img style="WIDTH: 252px; HEIGHT: 175px" height="195" alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2008/11/image-313.jpg" width="240" align="left" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a target="_blank" href="http://farm4.static.flickr.com/3205/3020873320_55370e444c_o.png"><img style="WIDTH: 241px; HEIGHT: 189px" height="240" alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2008/11/image-314.jpg" width="232" align="left" /></a></p>
<p><a target="_blank" href="http://farm4.static.flickr.com/3205/3020873320_55370e444c_o.png"><img style="WIDTH: 260px; HEIGHT: 187px" height="268" alt="Image" src="http://www.infocaptor.com/dashboard/wp-content/uploads/2008/11/image-316.jpg" width="500" align="left" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h2>or How about doing the following things?</h2>
<ul>
<li>Connect to multiple Excel Files</li>
<li>Build Dials, <strong>Gauges, Speedometers and Thermometers</strong></li>
<li>Customize the look and feel of tables and charts</li>
</ul>
<p>Example:</p>
<p>Customize Bar chart colors based on value. If the value is less than 10 then make it red, if it is above 100 then make it Green</p>
<p align="center">
<h2>Auto-Refresh</h2>
<p>Lot of our customers build <strong>dashboards connected to live data feeds</strong> and then display the dashboards on <strong>huge TV displays</strong>. They set the dashboard to <strong>refresh automatically</strong> every few seconds.</p>
<h2>Are you up for more Advanced stuff?</h2>
<ul>
<li>
<div align="left">Build Dashboard from multiple Excel and Microsoft Access files (.xls and .mdb</div>
</li>
<li>
<div align="left">Auto-Refresh</div>
</li>
<li>
<div align="left">Export to Static HTML</div>
</li>
</ul>
<p>&nbsp;</p>
<h2><strong>Benefits of using Dashboard Designer</strong></h2>
<ul>
<li>
<div align="left"><strong>Your dashboard or presenation layer is independent</strong> – Dashboard definition is stored separately</div>
</li>
<li>
<div align="left"><strong>Increased productivity</strong> – When you have fresh data just refresh the dashboard, no redevelopment needed</div>
</li>
<li>
<div align="left"><strong>No Messy Excel Macros or coding knowledge required</strong> – Just drag and drop tables and visually build Tables, Charts, Speedometer, Gauges, Dials, Thermometers and more charts</div>
</li>
<li>
<div align="left"><strong>Simplified Distribution and Presentation</strong> – You can Export the Dashboard to PDF or HTML and just send them as attachments</div>
</li>
<li>
<div align="left"><strong>Save Time</strong> &#8211; Just build the dashboard presentation layer only once and automate the refreshes.</div>
</li>
</ul>
<h2><strong>Would you like to hear what some of our lovely customers say?</strong></h2>
<div>
<p><em>I bought this software but as things usually go, never really got time to work with it. After over a month, launched it and took the courage to go through the online tutorials and began experimenting things as mentioned in the documents and video tutorials. I was simply amazed by the ease of which I could produce the tables, drop down parameters and beautiful gauges. Vow! truly simple and easy software to build dashboards</em></p>
<p><em>- Kelly Greb,CA</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>After trying the Excel templates and spending on various video tutorials learning how to build dashboards in Excel using Macros and Excel stuff, never really got anywhere. Decided to try out InfoCaptor and Tableau. Although Tableau offers lot more visualization options, it is way beyond our dashboarding need and it is incredibly expensive. Excel dashboard designer worked out pretty good for our organization both cost wise and feature wise. After 15 days our company got few more viewer licenses. Currently we are evaluating the web based version of the dashboards.</em></p>
<p><em>- Martin Piro, GA</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>This is the best dashboard software for its price. One good thing we did was to hire their consulting services to build few dashboard prototypes and provide some quick dashboard training.</em></p>
<p><em>- Terry Seal, IL</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>We evaluated Xcelsius and Qlikview and the cost for organization to implement dashboards was quoted over 10,000 USD. For fraction of the above quoted price, we were able to buy the licenses for the web based software and get some free training. This is truly a dashboard software for small businesses like us.</em></p>
<p><em>- (Name not disclosed) IT Manager of a Trucking company, OH</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>I have been using Excel Dashboards for past 4 days. This has literally shaved 30 hrs per month that I used to spent every month. It was pretty easy to create the dashboards. Was able to generate a presentable PDF in just few hours (under 3 hrs to be precise). My plan of action from now on is to get an updated Excel file and refresh the dashboard,generate the PDf and send it to my Department manager, all done in 10 minutes. For $50, its a no brainer.</em></p>
<p><em>- John Mc</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>It isn’t often you find a product that has the two cardinal virtues: a price that is an order-of-magnitude below the big players in the field, and a development team that really listens and responds to customer feedback and requests. “InfoCaptor is such a product”. Dashboard design and use has swept through the Fortune 500 companies, but until recently it was too expensive and required too much technical knowledge for mid-size companies to embrace. InfoCaptor has brought the benefits of dashboards to any organization with as few as one trained IT person on staff. The real strength of InfoCaptor, however, is the dedication of the development team. InfoCaptor staff worked to try and create additions to the current product in order to fit our specific needs. There was no reluctance to help, none of the normal “We’re very busy right now?” excuses; instead there were dozens of emails, remote assistance, and new beta components on virtually a daily basis. I am a big fan, and look to InfoCaptor with eager anticipation of what features will be added next. The current product does what products costing 10 times as much do.I can’t wait to see what this kind of drive, energy, and obvious love of the project on the part of those developing it, will bring to the table next.</em></p>
<p><em>- Elliot Apter<br />
CIO, Atpac Logistics</em></p>
</div>
<p>&nbsp;</p>
<div>
<p><em>My monthly routine is to spend 2-3 days on creating Excel reports and submitting it to my boss. Out of frustration I stumbled across InfoCaptor and approached Nilesh for help in getting a sample dashboard created. Having submitted all the raw data, InfoCaptor team came up with a nice looking dashboard that was much more efficient with the use of parameters. For e.g I used to have seperate metrics for Year, Quarter and for each months. The supplied dashboard had parameters that allowed to switch between year,quarter or month view instantly. This is saving me a lot of time. The only thing remaining is to feed the dashboard directly from the ODBC source. Right now I just extract the raw data into Excel and let InfoCaptor feed from it but having direct ODBC link will give me real time views. Thank you very much for a wonderful job and the product.</em></p>
<p><em>- Bob Jacobs</em></p>
</div>
<p>&nbsp;</p>
<h2><strong>So, who else is using this Dashboard Software?</strong></h2>
<p>Excel Dashboard Software (InfoCaptor family) is used by following group of people</p>
<ul>
<li>used by individuals who are <strong>single business owners</strong></li>
<li>used by small businesses who have under 5 employees</li>
<li>used by <strong>growing businesses</strong> who have around 10-20 employees</li>
<li>used by <strong>medium businesses</strong> who have revenues in the range of 30-50 million</li>
<li>we do have few <strong>big corporations</strong> using them (Alcoa, Bank of Canada, Siemens etc)</li>
</ul>
<p>Our majority of customer base is small and medium businesses because our product is very easy to use and priced perfectly for the small business owner.</p>
<p>&nbsp;</p>
<h2><strong>Dashboards Provide the needed clarity!</strong></h2>
<p>Implementing Dashboards is the best thing you will do for yourself and your business. YOU can make a difference in your company and get noticed.</p>
<h2><strong>Dashboards provide unique window to your Business, Why put this off?</strong></h2>
<p>Maybe you think that this might be too much work. Maybe it seems like drudgery to use a dashboard or business intelligence software.</p>
<p>It is not true. Building dashboard is a fun process and you will definitely add a shining star in your resume. You initiate the dashboard project in your company and you will become the &#8220;Dashboard Guy&#8221; or &#8220;The Dashboard Person&#8221; everyone will look towards to.</p>
<h2>There is No Risk, Your Satisfaction is Guaranteed</h2>
<p>You might ask how?</p>
<p>We provide risk free, unconditional <strong>money back guarantee</strong> within 30 days of Your purchase.</p>
<h2>Absolutely Free: 60 minutes of Dashboard Consultation and Service</h2>
<p>For a limited time, we will provide 1 free web session to help you get started and build the dashboard. This one hour dashboard consultation is worth $100 but we are offering this absolutely free of cost and with no strings attached.</p>
<h2>Why give free Consulting Service?</h2>
<p>No matter how good the software you have, there is always &#8220;<strong>Fear of learning new thing</strong>&#8221; and if you add a little procastination then the software may never get used. Our mission is for you to use our software and gain insights into your Business. If you just have the software and not using it then we are not doing a good job.</p>
<p>So when you purchase the license for the dashboard designer, you have the option to avail our free web session where we send you the Gotomeeting invitiation and then one of our team member walks you through the basics and helps you build the dashboard objects.</p>
<h2>How do you get the free 60 minutes of consulting?</h2>
<ul>
<li>Once you make a purchase, we send you link to download the software</li>
<li>You can walk through our tutorial section and watch our videos</li>
<li>If you still feel that you may need a little hand holding send us an email at <strong>contact &#8220;AT&#8221; infocaptor.com</strong> (replace &#8220;AT&#8221; with @)</li>
<li>Once we receive your request, we will arrange for a schedule on when to setup the web meeting.</li>
</ul>
<p>&nbsp;</p>
<p><strong>So Do you agree with the following equation?</strong></p>
<p><strong>Risk Free Purchase + 100% Satisfaction + Free consultation =? Happy Dashboard User</strong></p>
<p>Our original <strong>InfoCaptor Dashboard Designer is priced at $297</strong>. But often the small business user works with Excel and Ms Access database.</p>
<p>Considering this, we have created this special License for Excel that enables you to work with Excel files but with the same original <strong>powerful Dashboard Designer</strong>.</p>
<p>Excel Dashboard Software is same as InfoCaptor Dashboard Designer but enables you to work exclusively with Excel and it is priced at <del>$297</del> a very economical price of <strong>$47</strong>.</p>
<p>InfoCaptor Dashboard Designer lets you work with SQL databases of all kind but if your requirement is to just work with Excel or Access then this price of <strong>$47</strong> is a perfect entry point and you can add components and upgrade anytime.</p>
<p>So How about the following equation</p>
<p><strong>$47 + Risk Free Purchase + 100% Satisfaction + Free consultation == Happy Dashboard User</strong></p>
<p><strong>Do you agree with the above equation?</strong></p>
<h2>Commit yourself to building the Dashboard</h2>
<p><strong>Excel Dashboard Builder – single user $47</strong></p>
<p><a target="_blank" href="https://www.plimus.com/jsp/buynow.jsp?contractId=2812724"><img src="http://www.exceldashboard.org/wp-content/uploads/2009/09/buy_now.png" /></a></p>
<ul>
<li>Build Unlimited Dashboards</li>
<li>Visual Query Builder</li>
<li>Merge multiple Excel files on one dashboard</li>
<li>Build Charts and Tables</li>
<li>Build Parameters &#8211; Drop down selectable list</li>
<li>Export to PDF</li>
<li>Auto-refresh</li>
<li>10 Free Dashboard Viewing licenses for dynamic viewing. (you can share your dashboard definitions with others)</li>
</ul>
<p><strong>+ For limited time you get 60 minutes of Free Dashboard Consulting service worth $100 (zero cost to you)</strong></p>
</div>
<p>For more information visit <a href=http://www.exceldashboard.org/is-this-dashboard-tool-right-for-you>Is this Dashboard Tool right for you?</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/simple-and-elegant-dashboards-with-excel' rel='bookmark' title='Permanent Link: Simple and Elegant Dashboards with Excel'>Simple and Elegant Dashboards with Excel</a> <small>Best Practice for Developing dashboards with Microsoft Excel Here is...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-software' rel='bookmark' title='Permanent Link: Excel Dashboard Software'>Excel Dashboard Software</a> <small>This page provides all the download files related to Excel...</small></li>
<li><a href='http://www.freeexceldashboard.com/free-dashboard-development-and-consultation' rel='bookmark' title='Permanent Link: Free Dashboard Development and Consultation'>Free Dashboard Development and Consultation</a> <small>Download a Dashboard Tool and then what? You have been...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/is-this-dashboard-tool-right-for-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance Dashboard Presentation ways</title>
		<link>http://www.freeexceldashboard.com/performance-dashboard-presentation-ways</link>
		<comments>http://www.freeexceldashboard.com/performance-dashboard-presentation-ways#comments</comments>
		<pubDate>Wed, 14 Apr 2010 01:56:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/performance-dashboard-presentation-ways</guid>
		<description><![CDATA[Dashboards present information in two broad ways. First, some of the data  presented is averaged or summarized. To get to the details of performance, the user must click repeatedly to access detailed information. This is know as &#8220;drilling down&#8221; and the user might need to drill down through several layers in order to discover the culprit transaction or data that was skewing the averaged summary statistic on the dashboard.
The second way many dashboards present data is by visual status –- most often using the stop lights colors of red, yellow and green to signal status. Once again, the details are missing and the user must drill down to uncover the underlying issues.
With Excel Dashboards, you connect to your raw data which may be residing in multiple excel files or any other database such as Access or SQL database. Information can be averaged or summarized in the dashboard. So it ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-a-performance-dashboard' rel='bookmark' title='Permanent Link: How to build a Performance Dashboard?'>How to build a Performance Dashboard?</a> <small>Traditional report layouts made it difficult for managers to quickly...</small></li>
<li><a href='http://www.freeexceldashboard.com/7-ways-to-remain-relevant-for-business-intelligence-in-2010' rel='bookmark' title='Permanent Link: 7 Ways to Remain Relevant for Business Intelligence in 2010'>7 Ways to Remain Relevant for Business Intelligence in 2010</a> <small>This year, while saying &#8220;Happy New Year!&#8221;, I was also...</small></li>
<li><a href='http://www.freeexceldashboard.com/data-governance-and-excel-dashboards-%e2%80%93-is-there-a-compromise' rel='bookmark' title='Permanent Link: Data Governance and Excel Dashboards – Is there a compromise?'>Data Governance and Excel Dashboards – Is there a compromise?</a> <small> Data governance is a set of processes that ensures...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Dashboards present information in two broad ways. First, some of the data  presented is averaged or summarized. To get to the details of performance, the user must click repeatedly to access detailed information. This is know as &#8220;<strong>drilling down</strong>&#8221; and the user might need to drill down through several layers in order to discover the culprit transaction or data that was skewing the averaged summary statistic on the dashboard.</p>
<p>The second way many dashboards present data is by visual status –- most often using the stop lights colors of red, yellow and green to signal status. Once again, the details are missing and the user must drill down to uncover the underlying issues.</p>
<p>With Excel Dashboards, you connect to your raw data which may be residing in multiple excel files or any other database such as Access or SQL database. Information can be averaged or summarized in the dashboard. So it provides a natural path to the detailed information for drililng straight to the raw transactions.</p>
<p>For more information visit <a href=http://www.exceldashboard.org/performance-dashboard-presentation-ways>Performance Dashboard Presentation ways</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-a-performance-dashboard' rel='bookmark' title='Permanent Link: How to build a Performance Dashboard?'>How to build a Performance Dashboard?</a> <small>Traditional report layouts made it difficult for managers to quickly...</small></li>
<li><a href='http://www.freeexceldashboard.com/7-ways-to-remain-relevant-for-business-intelligence-in-2010' rel='bookmark' title='Permanent Link: 7 Ways to Remain Relevant for Business Intelligence in 2010'>7 Ways to Remain Relevant for Business Intelligence in 2010</a> <small>This year, while saying &#8220;Happy New Year!&#8221;, I was also...</small></li>
<li><a href='http://www.freeexceldashboard.com/data-governance-and-excel-dashboards-%e2%80%93-is-there-a-compromise' rel='bookmark' title='Permanent Link: Data Governance and Excel Dashboards – Is there a compromise?'>Data Governance and Excel Dashboards – Is there a compromise?</a> <small> Data governance is a set of processes that ensures...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/performance-dashboard-presentation-ways/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Dashboards for Web</title>
		<link>http://www.freeexceldashboard.com/excel-dashboards-for-web</link>
		<comments>http://www.freeexceldashboard.com/excel-dashboards-for-web#comments</comments>
		<pubDate>Mon, 05 Apr 2010 02:31:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/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 software

The link to the web dashboard software is provided within the above documentation link.
download web dashboard software

For more information visit Excel Dashboards for Web


Related posts:How to build Excel Dashboards – 12 Previous &#8211; Excel Dashboard Tutorial &#8211; 11 How do you...
Excel Dashboard Software This page provides all the download files related to Excel...
How to build Excel Dashboards – 2 Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...

Related posts brought to you by Yet Another Related Posts Plugin.


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-12' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 12'>How to build Excel Dashboards – 12</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 11 How do you...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-software' rel='bookmark' title='Permanent Link: Excel Dashboard Software'>Excel Dashboard Software</a> <small>This page provides all the download files related to Excel...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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>
<p>For more information visit <a href=http://www.exceldashboard.org/excel-dashboards-for-web>Excel Dashboards for Web</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-12' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 12'>How to build Excel Dashboards – 12</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 11 How do you...</small></li>
<li><a href='http://www.freeexceldashboard.com/excel-dashboard-software' rel='bookmark' title='Permanent Link: Excel Dashboard Software'>Excel Dashboard Software</a> <small>This page provides all the download files related to Excel...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/excel-dashboards-for-web/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel ODBC – Access ODBC</title>
		<link>http://www.freeexceldashboard.com/excel-odbc-%e2%80%93-access-odbc</link>
		<comments>http://www.freeexceldashboard.com/excel-odbc-%e2%80%93-access-odbc#comments</comments>
		<pubDate>Tue, 30 Mar 2010 00:06:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Dashboard]]></category>
		<category><![CDATA[Excel Dashboard]]></category>
		<category><![CDATA[Excel Dashboard Software]]></category>

		<guid isPermaLink="false">http://www.freeexceldashboard.com/excel-odbc-%e2%80%93-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 Access databases (ie. mdb or .accdb)
Steps to Create DSN for ODBC connection
1. Click on the Start menu and click on the Control Panel

&#160;
2. Click on the &#8220;Administrative Tools&#8221;.
NOTE: You may need to &#8220;Switch to Classic View&#8221; in windows Vista or newer version of your windows operating system

&#160;
3. Click on the &#8220;Data Sources (ODBC)&#8221; setup icon

&#160;
4. Click on &#8220;Add&#8221;

&#160;
5. Select .xls, .xlsx .xlsm .xlsb option if you are using the latest Excel version and format of Excel

6.We will select the normal .XLS version since this northwind.xls file was created using old format

7. Give a short and ...


Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-12' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 12'>How to build Excel Dashboards – 12</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 11 How do you...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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>
<p>For more information visit <a href=http://www.exceldashboard.org/excel-odbc-access-odbc>Excel ODBC – Access ODBC</a></p>


<p>Related posts:<ol><li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-2' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 2'>How to build Excel Dashboards – 2</a> <small>Previous Step: Excel Dashboards &#8211; Part 1 Launch Dashboard Software...</small></li>
<li><a href='http://www.freeexceldashboard.com/how-to-build-excel-dashboards-%e2%80%93-12' rel='bookmark' title='Permanent Link: How to build Excel Dashboards – 12'>How to build Excel Dashboards – 12</a> <small>Previous &#8211; Excel Dashboard Tutorial &#8211; 11 How do you...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.freeexceldashboard.com/excel-odbc-%e2%80%93-access-odbc/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
