<?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>Panorama Business Intelligence &#187; NovaView Tips &amp; Tricks</title>
	<atom:link href="http://www.panorama.com/blog/category/novaview-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.panorama.com/blog</link>
	<description>Making businesses better - not just better informed</description>
	<lastBuildDate>Mon, 06 Feb 2012 16:12:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Text in Measures</title>
		<link>http://www.panorama.com/blog/2010/03/text-in-measures/</link>
		<comments>http://www.panorama.com/blog/2010/03/text-in-measures/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:26:49 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[MDX]]></category>
		<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=361</guid>
		<description><![CDATA[I knew for a long time that measures can have text and not only numbers, but last week I had a scenario where it was the perfect solution for my problem.
Let&#8217;s say that I work in number of jobs. In every job I got some tasks that I need to do. The fact table looks [...]]]></description>
			<content:encoded><![CDATA[<p>I knew for a long time that measures can have text and not only numbers, but last week I had a scenario where it was the perfect solution for my problem.</p>
<p>Let&#8217;s say that I work in number of jobs. In every job I got some tasks that I need to do. The fact table looks like this:</p>
<table border="0" cellspacing="0" cellpadding="0" width="425">
<col span="1" width="99"></col>
<col span="1" width="118"></col>
<col span="1" width="99"></col>
<col span="1" width="109"></col>
<tbody>
<tr>
<td width="99" height="17">
<p align="center"><strong><em><span style="text-decoration: underline">Job</span></em></strong></p>
</td>
<td width="118">
<p align="center"><strong><em><span style="text-decoration: underline">Task</span></em></strong></p>
</td>
<td width="99">
<p align="center"><strong><em><span style="text-decoration: underline">Tasks To Do</span></em></strong></p>
</td>
<td width="109">
<p align="center"><strong><em><span style="text-decoration: underline">Tasks Completed</span></em></strong></p>
</td>
</tr>
<tr>
<td height="17">
<p align="center">Developer</p>
</td>
<td>
<p align="center">Develop BI System</p>
</td>
<td>
<p align="center">1</p>
</td>
<td>
<p align="center">1</p>
</td>
</tr>
<tr>
<td height="17">
<p align="center">Developer</p>
</td>
<td>
<p align="center">Help Friends</p>
</td>
<td>
<p align="center">1</p>
</td>
<td>
<p align="center">0</p>
</td>
</tr>
<tr>
<td height="17">
<p align="center">Manager</p>
</td>
<td>
<p align="center">Manage</p>
</td>
<td>
<p align="center">1</p>
</td>
<td>
<p align="center">1</p>
</td>
</tr>
<tr>
<td height="17">
<p align="center">Therapist</p>
</td>
<td>
<p align="center"> </p>
</td>
<td>
<p align="center">0</p>
</td>
<td>
<p align="center">0</p>
</td>
</tr>
</tbody>
</table>
<p>Summarizing the &#8220;Tasks To Do&#8221; column will get the total tasks that I need to do. Summarizing the &#8220;Tasks Completed&#8221; column will get the tasks that I did. Note that in the Therapist job I didn&#8217;t get any tasks.<br />
In the OLAP cube, I created a calculated measure which is the percent of the completed tasks (for every job or for any other dimension). The problem is: What is the answer in case that there are no any tasks to do? Some will say 0% and some will say 100%. That&#8217;s why a text measure such as &#8220;There are no tasks&#8221; can be a perfect solution for this kind of problem. This is the calculation of the calculated measure:</p>
<p><span id="more-361"></span><br />
Create Member CurrentCube.[Measures].[Completed Percentage] as<br />
IIF(IsEmpty([Measures].[Tasks To Do]),<br />
null,<br />
IIF([Measures].[Tasks To Do] = 0),<br />
-1,<br />
[Measures].[Completed Tasks] / [Measures].[Tasks To Do]<br />
)<br />
)<br />
,format_string = &#8220;#,##0%;\T\h\e\r\e\ \a\r\e\ \n\o\ \t\a\s\k\s;0%&#8221;;</p>
<p>In the Panorama&#8217;s view, the format of the measure must be &#8220;General&#8221;. Otherwise, the view won&#8217;t show the format string with the text</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;title=Text%20in%20Measures&amp;notes=I%20knew%20for%20a%20long%20time%20that%20measures%20can%20have%20text%20and%20not%20only%20numbers%2C%20but%20last%20week%20I%20had%20a%20scenario%20where%20it%20was%20the%20perfect%20solution%20for%20my%20problem.%0D%0A%0D%0ALet%27s%20say%20that%20I%20work%20in%20number%20of%20jobs.%20In%20every%20job%20I%20got%20some%20tasks%20that%20I%20need%20to%20do.%20The" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;title=Text%20in%20Measures&amp;bodytext=I%20knew%20for%20a%20long%20time%20that%20measures%20can%20have%20text%20and%20not%20only%20numbers%2C%20but%20last%20week%20I%20had%20a%20scenario%20where%20it%20was%20the%20perfect%20solution%20for%20my%20problem.%0D%0A%0D%0ALet%27s%20say%20that%20I%20work%20in%20number%20of%20jobs.%20In%20every%20job%20I%20got%20some%20tasks%20that%20I%20need%20to%20do.%20The" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F%20Text%20in%20Measures" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;t=Text%20in%20Measures" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;title=Text%20in%20Measures" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;title=Text%20in%20Measures&amp;annotation=I%20knew%20for%20a%20long%20time%20that%20measures%20can%20have%20text%20and%20not%20only%20numbers%2C%20but%20last%20week%20I%20had%20a%20scenario%20where%20it%20was%20the%20perfect%20solution%20for%20my%20problem.%0D%0A%0D%0ALet%27s%20say%20that%20I%20work%20in%20number%20of%20jobs.%20In%20every%20job%20I%20got%20some%20tasks%20that%20I%20need%20to%20do.%20The" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F&amp;title=Text%20in%20Measures&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=I%20knew%20for%20a%20long%20time%20that%20measures%20can%20have%20text%20and%20not%20only%20numbers%2C%20but%20last%20week%20I%20had%20a%20scenario%20where%20it%20was%20the%20perfect%20solution%20for%20my%20problem.%0D%0A%0D%0ALet%27s%20say%20that%20I%20work%20in%20number%20of%20jobs.%20In%20every%20job%20I%20got%20some%20tasks%20that%20I%20need%20to%20do.%20The" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Text%20in%20Measures&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2010%2F03%2Ftext-in-measures%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2010/03/text-in-measures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Usage of Batch Mode in Panorama Web Development</title>
		<link>http://www.panorama.com/blog/2009/08/usage-of-batch-mode-in-panorama-web-development/</link>
		<comments>http://www.panorama.com/blog/2009/08/usage-of-batch-mode-in-panorama-web-development/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 10:33:14 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=281</guid>
		<description><![CDATA[After going to production, we encountered a serious bug where a web page simply stucked and made the browser freeze. This page is a little bit complex: It contains three views with interaction between them, so we had much trouble with this page in the past. We weren&#8217;t suprised to hear that this page causes us [...]]]></description>
			<content:encoded><![CDATA[<div>After going to production, we encountered a serious bug where a web page simply stucked and made the browser freeze. This page is a little bit complex: It contains three views with interaction between them, so we had much trouble with this page in the past. We weren&#8217;t suprised to hear that this page causes us more trouble, so we went on to debugging.</p>
<p>One of the views in this page get two parameters from the web page (using Panorama&#8217;s SDK) &#8211; fromDate and toDate, which define a time interval for the view to slice on. After debugging, we&#8217;ve found that the problem was that after updating the fromDate parameter and before updating the toDate parameter, the view had no rows left. When trying to update the toDate parameters in the view with no rows, it made the browser stuck.<br />
<span id="more-281"></span><br />
The solution is to make the parameters update in one action. There are two ways of doing this:</p>
<p>The first one is to use the CallUpdateParametersEx with number of parameters. You can update many parameters in one function call (look in the SDK documentation). The problem with this solution is that the code is not readable.</p>
<p>The second and better solution is to use the EnterBatchCommandMode and LeaveBatchCommandMode functions to make the parameters update in one transaction. This way, the code is much more readable. You can update every parameter in its own CallUpdateParametersEx call. The usage of this function is very simple: Call the EnterBatchCommandMode function before the parameters update and call the LeaveBatchCommandMode after that.</p>
<p>I&#8217;m sure that there are more scenarios where this concept can be helpful, so it&#8217;s important to get familiar with.</p></div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development&amp;notes=After%20going%20to%20production%2C%20we%20encountered%20a%20serious%20bug%20where%20a%20web%20page%20simply%20stucked%20and%20made%20the%20browser%20freeze.%20This%20page%20is%20a%20little%20bit%20complex%3A%C2%A0It%20contains%20three%20views%20with%20interaction%20between%20them%2C%20so%20we%20had%20much%20trouble%20with%20this%20page%20in%20t" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development&amp;bodytext=After%20going%20to%20production%2C%20we%20encountered%20a%20serious%20bug%20where%20a%20web%20page%20simply%20stucked%20and%20made%20the%20browser%20freeze.%20This%20page%20is%20a%20little%20bit%20complex%3A%C2%A0It%20contains%20three%20views%20with%20interaction%20between%20them%2C%20so%20we%20had%20much%20trouble%20with%20this%20page%20in%20t" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F%20Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;t=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development&amp;annotation=After%20going%20to%20production%2C%20we%20encountered%20a%20serious%20bug%20where%20a%20web%20page%20simply%20stucked%20and%20made%20the%20browser%20freeze.%20This%20page%20is%20a%20little%20bit%20complex%3A%C2%A0It%20contains%20three%20views%20with%20interaction%20between%20them%2C%20so%20we%20had%20much%20trouble%20with%20this%20page%20in%20t" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F&amp;title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=After%20going%20to%20production%2C%20we%20encountered%20a%20serious%20bug%20where%20a%20web%20page%20simply%20stucked%20and%20made%20the%20browser%20freeze.%20This%20page%20is%20a%20little%20bit%20complex%3A%C2%A0It%20contains%20three%20views%20with%20interaction%20between%20them%2C%20so%20we%20had%20much%20trouble%20with%20this%20page%20in%20t" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Usage%20of%20Batch%20Mode%20in%20Panorama%20Web%20Development&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F08%2Fusage-of-batch-mode-in-panorama-web-development%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/08/usage-of-batch-mode-in-panorama-web-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Entering the Dashboards Site in Full Screen Mode</title>
		<link>http://www.panorama.com/blog/2009/06/entering-the-dashboards-site-in-full-screen-mode/</link>
		<comments>http://www.panorama.com/blog/2009/06/entering-the-dashboards-site-in-full-screen-mode/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 08:20:10 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=208</guid>
		<description><![CDATA[A wonderful idea I heard of is to turn to full screen mode in Internet Explorer when entering the Dashboard site. It can make a better user experience. Try it yourself and you&#8217;ll see the huge difference.
How will we do that? We will add a JavaScript code to the first page of the dashboards site and after [...]]]></description>
			<content:encoded><![CDATA[<p>A wonderful idea I heard of is to turn to full screen mode in Internet Explorer when entering the Dashboard site. It can make a better user experience. Try it yourself and you&#8217;ll see the huge difference.</p>
<p>How will we do that? We will add a JavaScript code to the first page of the dashboards site and after that we&#8217;ll ask our system administrator to enable this script for us. Let&#8217;s get to work:</p>
<p><span style="text-decoration: underline;">Step 1 &#8211; The JavaScript</span></p>
<p>Create a new HTML component in the dashboard page. Edit it and click on the &#8220;View Source&#8221; button (the one with the &lt;&gt;). Enter the following code:<br />
&lt;SCRIPT&gt;<br />
var wscript = new ActiveXObject(&#8221;Wscript.shell&#8221;);<br />
wscript.SendKeys(&#8221;{F11}&#8221;);<br />
&lt;/SCRIPT&gt;</p>
<p><span id="more-208"></span></p>
<p>It will simulate the user hitting the F11 key which will turn the IE to fullscreen mode. The only problem is that when viewing the page, you&#8217;ll see this message:</p>
<p align="center"><img src="http://www.miky-schreiber.com/Blog/content/binary/ActiveXPromt.JPG" border="0" alt="" /></p>
<p>This takes us to step 2.</p>
<p><span style="text-decoration: underline;">Step 2 &#8211; Enabling ActiveX</span></p>
<p>First, I&#8217;ll show you how to do this on your local maching and then you&#8217;ll ask your system administrator to enable it on all the machines in the organization using distribution. Enter the Tools menu in IE and hit Internet Options. Click on the Security tab and make sure the &#8220;Trusted Sites&#8221; zone is selected. Note that the Panorama Dashboards site is already defined as trusted site (if the initial installation of Panorama Dashboards made according to the installation manual. If it&#8217;s not, you have a problem). Click on &#8220;Custom Level&#8221; and Enable the &#8220;Initialize and script ActiveX &#8230;&#8221; option:</p>
<p align="center"><img src="http://www.miky-schreiber.com/Blog/content/binary/EnableActiveXIE.JPG" border="0" alt="" /></p>
<p align="left">Now, you&#8217;ll see that there&#8217;s no promting for ActiveX controls. Show this to your sys admin and ask him to make this happen on every user&#8217;s machine (using distribution, of course). As I said, the dashboards site is a trusted site so I can&#8217;t see any problem to enable this. The result is very beautiful and can make a lot of users happy. Note that you can also add a button in your page that will call the same script in order to return to normal mode.</p>
<p align="left">Enjoy.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode&amp;notes=A%20wonderful%20idea%20I%20heard%20of%20is%20to%20turn%20to%20full%20screen%20mode%20in%20Internet%20Explorer%20when%20entering%20the%20Dashboard%20site.%20It%20can%20make%20a%20better%20user%20experience.%20Try%20it%20yourself%20and%20you%27ll%20see%20the%C2%A0huge%20difference.%0D%0A%0D%0AHow%20will%20we%C2%A0do%20that%3F%20We%20will%20add%20a%20JavaSc" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode&amp;bodytext=A%20wonderful%20idea%20I%20heard%20of%20is%20to%20turn%20to%20full%20screen%20mode%20in%20Internet%20Explorer%20when%20entering%20the%20Dashboard%20site.%20It%20can%20make%20a%20better%20user%20experience.%20Try%20it%20yourself%20and%20you%27ll%20see%20the%C2%A0huge%20difference.%0D%0A%0D%0AHow%20will%20we%C2%A0do%20that%3F%20We%20will%20add%20a%20JavaSc" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F%20Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;t=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode&amp;annotation=A%20wonderful%20idea%20I%20heard%20of%20is%20to%20turn%20to%20full%20screen%20mode%20in%20Internet%20Explorer%20when%20entering%20the%20Dashboard%20site.%20It%20can%20make%20a%20better%20user%20experience.%20Try%20it%20yourself%20and%20you%27ll%20see%20the%C2%A0huge%20difference.%0D%0A%0D%0AHow%20will%20we%C2%A0do%20that%3F%20We%20will%20add%20a%20JavaSc" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F&amp;title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=A%20wonderful%20idea%20I%20heard%20of%20is%20to%20turn%20to%20full%20screen%20mode%20in%20Internet%20Explorer%20when%20entering%20the%20Dashboard%20site.%20It%20can%20make%20a%20better%20user%20experience.%20Try%20it%20yourself%20and%20you%27ll%20see%20the%C2%A0huge%20difference.%0D%0A%0D%0AHow%20will%20we%C2%A0do%20that%3F%20We%20will%20add%20a%20JavaSc" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Entering%20the%20Dashboards%20Site%20in%20Full%20Screen%20Mode&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fentering-the-dashboards-site-in-full-screen-mode%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/06/entering-the-dashboards-site-in-full-screen-mode/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Panorama Grid Corner Issue</title>
		<link>http://www.panorama.com/blog/2009/06/panorama-grid-corner-issue/</link>
		<comments>http://www.panorama.com/blog/2009/06/panorama-grid-corner-issue/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 12:58:54 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=196</guid>
		<description><![CDATA[
When adding parameters to your view, you&#8217;ll see that they appear in the upper-left corner of the grid/crosstab. In the NovaView Desktop program it can be tolerated, but in the Web Access or in the Dashboards web site it cannot be. It&#8217;s very annoying and we can&#8217;t let the users see our inside use of [...]]]></description>
			<content:encoded><![CDATA[<div class="itemBodyStyle">
<p>When adding parameters to your view, you&#8217;ll see that they appear in the upper-left corner of the grid/crosstab. In the NovaView Desktop program it can be tolerated, but in the Web Access or in the Dashboards web site it cannot be. It&#8217;s very annoying and we can&#8217;t let the users see our inside use of the parameters. What can we do?</p>
<p>The solution is very simple: We need to change the skin of the view/dashboards page/dashboards site (depends on how you work) and make the grid corner font&#8217;s color identical to the color of the grid&#8217;s background. That way, the users will not see the text in the grid&#8217;s corner. The way of doing it is also not hard:</p>
<p><em>Remember: Always backup your files before modifying them</em>. In the panorama folder, enter E-BI/Config/Skins and enter your skin&#8217;s folder. In the classic way of work, you&#8217;re using the default skin which can be changed in the Dashboards settings section. I recommend you to make a new skin out from the default one (see <a href="http://kb.panorama.com/index.php?option=com_content&amp;task=view&amp;id=185&amp;Itemid=2">here</a>), update the skin&#8217;s name in the Dashboards settings section and not touching the default skin itself. In your new skin, change the GridCornerFont setting so that its color will be the color of the grid&#8217;s corner&#8217;s background. You can see the color of the grid&#8217;s corner in the GridTopLeftBackground setting. For example, if GridTopLeftBackground=(194,210,226), then if you set GridCornerFont=((Arial,1,R),(194,210,226)) then no-one will see the text over there.</p>
<p>Enjoy.</p></div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;title=Panorama%20Grid%20Corner%20Issue&amp;notes=%0D%0A%0D%0AWhen%20adding%20parameters%20to%20your%20view%2C%20you%27ll%20see%20that%20they%20appear%20in%20the%20upper-left%20corner%20of%20the%20grid%2Fcrosstab.%20In%20the%20NovaView%20Desktop%20program%20it%20can%20be%20tolerated%2C%20but%20in%20the%20Web%20Access%20or%20in%20the%20Dashboards%20web%20site%20it%20cannot%20be.%20It%27s%20very%20annoy" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;title=Panorama%20Grid%20Corner%20Issue&amp;bodytext=%0D%0A%0D%0AWhen%20adding%20parameters%20to%20your%20view%2C%20you%27ll%20see%20that%20they%20appear%20in%20the%20upper-left%20corner%20of%20the%20grid%2Fcrosstab.%20In%20the%20NovaView%20Desktop%20program%20it%20can%20be%20tolerated%2C%20but%20in%20the%20Web%20Access%20or%20in%20the%20Dashboards%20web%20site%20it%20cannot%20be.%20It%27s%20very%20annoy" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F%20Panorama%20Grid%20Corner%20Issue" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;t=Panorama%20Grid%20Corner%20Issue" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;title=Panorama%20Grid%20Corner%20Issue" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;title=Panorama%20Grid%20Corner%20Issue&amp;annotation=%0D%0A%0D%0AWhen%20adding%20parameters%20to%20your%20view%2C%20you%27ll%20see%20that%20they%20appear%20in%20the%20upper-left%20corner%20of%20the%20grid%2Fcrosstab.%20In%20the%20NovaView%20Desktop%20program%20it%20can%20be%20tolerated%2C%20but%20in%20the%20Web%20Access%20or%20in%20the%20Dashboards%20web%20site%20it%20cannot%20be.%20It%27s%20very%20annoy" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F&amp;title=Panorama%20Grid%20Corner%20Issue&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=%0D%0A%0D%0AWhen%20adding%20parameters%20to%20your%20view%2C%20you%27ll%20see%20that%20they%20appear%20in%20the%20upper-left%20corner%20of%20the%20grid%2Fcrosstab.%20In%20the%20NovaView%20Desktop%20program%20it%20can%20be%20tolerated%2C%20but%20in%20the%20Web%20Access%20or%20in%20the%20Dashboards%20web%20site%20it%20cannot%20be.%20It%27s%20very%20annoy" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Panorama%20Grid%20Corner%20Issue&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F06%2Fpanorama-grid-corner-issue%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/06/panorama-grid-corner-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Searching in Panorama Crosstab</title>
		<link>http://www.panorama.com/blog/2009/05/searching-in-panorama-crosstab/</link>
		<comments>http://www.panorama.com/blog/2009/05/searching-in-panorama-crosstab/#comments</comments>
		<pubDate>Sun, 31 May 2009 08:15:34 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=189</guid>
		<description><![CDATA[A new desire came from one of our customers. The request was to have the ability to search in Panorama Crosstab. The first solution I thought of was searching the grid in iterative way and it worked fine using the Panorama SDK. After that, my friend Boris came with another simple and elegant solution: We can [...]]]></description>
			<content:encoded><![CDATA[<p>A new desire came from one of our customers. The request was to have the ability to search in Panorama Crosstab. The first solution I thought of was searching the grid in iterative way and it worked fine using the Panorama SDK. After that, my friend Boris came with another simple and elegant solution: We can use Parameter in the Panorama view and highlight the number which was defined in the parameter. In this post I&#8217;ll explain how to implement this.</p>
<p>1. Create a new view using Panorama NovaView Desktop and make sure you see the grid in the view.</p>
<p>2. Define a new parameter: Click on View -&gt; Paramaters, and click on the &#8220;Manage Parameters&#8221; button. Click on Add. The default type is Number and this is exactly what wee need (for now). In the name, type Highlight and in the Default Value type a number that you see in the grid (this is the number that will be highlighted later). Let&#8217;s take 0 for example. Click on OK twice and close the little Parameters window.<br />
<span id="more-189"></span></p>
<p>3. Create a new Exception: Click on Data -&gt; Exceptions -&gt; Exceptions&#8230; -&gt; Add. Click on Next and then choose &#8220;Custom Exception&#8221;. Click on &#8220;Edit Exception&#8221; and there write the following formula: [Measures].CurrentMember = [[Highlight]]<br />
This will simply select all the cells with the number that we defined earlier in the Highlight parameter. Click on OK and click Next. In this step, define the style of the highlighted cells. I picked red color and Bold font style. You can click on Finish now and then click OK. Open the small Parameters window (right click in the crosstab&#8217;s corner and choose Parameters) and click on &#8220;Apply Changes&#8221;. Now, you will see that all the cells with 0 are highlighted. If you don&#8217;t see it, check that you did all the steps correctly.</p>
<p>4. When we will show the view to the user, we don&#8217;t want to show him anything highlighed when the view is loaded. This is where a little trick takes place: open the small Parameters window (right click in the crosstab&#8217;s corner and choose Parameters), double click on the Highlight parameter. Choose String as the parameter type (on the right part) and in the Default value, enter abc. Click twice on OK and then on the apply button and you&#8217;ll see that now the highlighed cells are regular ones.</p>
<p>5. In the dashboards page, or in the web page you created using the Panorama SDK, create a button that will call the function searchGrid. Just add the button the property onclick=&#8221;searchGrid(&#8217;master&#8217;)&#8221;, where master is the applet&#8217;s name. this is the code of the searchGrid function:</p>
<p>function searchGrid (applet) {<br />
var reply = prompt(&#8217;Please enter the number to search&#8217;,&#8221;);<br />
eval(applet + &#8216;.CallUpdateParametersEx(&#8221;P|~|Highlight|~|&#8217; + reply + &#8216;|~~|&#8221;)&#8217;);<br />
}</p>
<p>Another tweaks I implemented and I didn&#8217;t write in this post in order to make it simple (for advanced developers only):</p>
<ul>
<li>You can search all the views in the current web/dashboard page. Just call the function for every applet, but make it in Batch mode.</li>
<li>You can search all the grid even if the user doesn&#8217;t see all the rows. You can tell him if the number he searched for is in there or not.</li>
</ul>
<p>That&#8217;s all. Test your new page and enjoy. For every question about this and anything else, you can leave a comment or write my mail.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;title=Searching%20in%20Panorama%20Crosstab&amp;notes=A%20new%20desire%20came%20from%20one%20of%20our%20customers.%20The%20request%20was%20to%20have%20the%20ability%20to%20search%20in%20Panorama%20Crosstab.%20The%20first%20solution%20I%20thought%20of%20was%20searching%20the%20grid%20in%20iterative%20way%20and%20it%20worked%20fine%C2%A0using%20the%20Panorama%20SDK.%20After%20that%2C%20my%20friend" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;title=Searching%20in%20Panorama%20Crosstab&amp;bodytext=A%20new%20desire%20came%20from%20one%20of%20our%20customers.%20The%20request%20was%20to%20have%20the%20ability%20to%20search%20in%20Panorama%20Crosstab.%20The%20first%20solution%20I%20thought%20of%20was%20searching%20the%20grid%20in%20iterative%20way%20and%20it%20worked%20fine%C2%A0using%20the%20Panorama%20SDK.%20After%20that%2C%20my%20friend" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F%20Searching%20in%20Panorama%20Crosstab" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;t=Searching%20in%20Panorama%20Crosstab" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;title=Searching%20in%20Panorama%20Crosstab" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;title=Searching%20in%20Panorama%20Crosstab&amp;annotation=A%20new%20desire%20came%20from%20one%20of%20our%20customers.%20The%20request%20was%20to%20have%20the%20ability%20to%20search%20in%20Panorama%20Crosstab.%20The%20first%20solution%20I%20thought%20of%20was%20searching%20the%20grid%20in%20iterative%20way%20and%20it%20worked%20fine%C2%A0using%20the%20Panorama%20SDK.%20After%20that%2C%20my%20friend" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F&amp;title=Searching%20in%20Panorama%20Crosstab&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=A%20new%20desire%20came%20from%20one%20of%20our%20customers.%20The%20request%20was%20to%20have%20the%20ability%20to%20search%20in%20Panorama%20Crosstab.%20The%20first%20solution%20I%20thought%20of%20was%20searching%20the%20grid%20in%20iterative%20way%20and%20it%20worked%20fine%C2%A0using%20the%20Panorama%20SDK.%20After%20that%2C%20my%20friend" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Searching%20in%20Panorama%20Crosstab&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F05%2Fsearching-in-panorama-crosstab%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/05/searching-in-panorama-crosstab/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panorama Dashboard Design Tips</title>
		<link>http://www.panorama.com/blog/2009/04/panorama-dashboard-design-tips/</link>
		<comments>http://www.panorama.com/blog/2009/04/panorama-dashboard-design-tips/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 20:03:40 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=178</guid>
		<description><![CDATA[Here are some tips we collected over the years about dashboard design:
Page Layout

Less is more &#8211; don&#8217;t put too many views in the page. 
Rule of thumb &#8211; no more than five reports in one page. 
Don&#8217;t use scrolling &#8211; the average user won&#8217;t scroll down the screen. 
Position in screen &#8211; some researches made [...]]]></description>
			<content:encoded><![CDATA[<p>Here are some tips we collected over the years about dashboard design:<br />
<u>Page Layout</u></p>
<ul>
<li>Less is more &#8211; don&#8217;t put too many views in the page. </li>
<li>Rule of thumb &#8211; no more than five reports in one page. </li>
<li>Don&#8217;t use scrolling &#8211; the average user won&#8217;t scroll down the screen. </li>
<li>Position in screen &#8211; some researches made about this subject and here are the recommendations:
<ul>
<li>Top-Left &#8211; it&#8217;s the part of the screen that the user looks at first. Put there the most important data.
<li>Center of the screen &#8211; the part the user looks after the top-left. Put there the second-most important data.
<li>Top-Right, Bottom-Left &#8211; Neutral parts.
<li>Bottom-Right &#8211; The user won&#8217;t pay attention to it, don&#8217;t put there important data.</li>
</ul>
</li>
<li>Fixed menus in every page. </li>
<li>Small amount of navigation targets in every page. Too much navigation paths will cause confusion. </li>
<li>Concentrate on the main page &#8211; in 90% of the cases the user will stay there. </li>
<li>Add graphic components and highlight them if necessary. </li>
<li>Blue color only to links (and underline, of course). </li>
</ul>
<p><span id="more-178"></span></p>
<p><u>Views Layout</u></p>
<ul>
<li>Two digits after the decimal point &#8211; in non-integer number, put only two digits after the decimal point. The human mind can&#8217;t understand more than that. </li>
<li>Focus on the clarity of the data and not only on its beauty. For example, 3D pie charts are very beautiful, but flatting them will make them more clear to the user. </li>
<li>Measures have meaning only when compared to other data. Don&#8217;t put stand-alone measure. </li>
<li>Pay attention to graphical change between the data and not only colors. Remember that there are color-blind users. </li>
<li>Text is more clear than icons. </li>
<li>Use the San Serif and Arial fonts. They are the most readable to the user. </li>
<li>Align the text only to one side and not to the middle. It seems better to programmers, but users want their text aligned to the left or to the right. </li>
<li>Colors &#8211; don&#8217;t use too much color. The dashboard page is not a jungle. Use colors of the same family. </li>
<li>Put dark text on bright background the vise versa. </li>
<li>And to conclude &#8211; use CSS whenever you can. It will save you much time and effort. </li>
</ul>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;title=Panorama%20Dashboard%20Design%20Tips&amp;notes=Here%20are%20some%20tips%20we%20collected%20over%20the%20years%20about%20dashboard%20design%3A%0D%0APage%20Layout%0D%0A%0D%0ALess%20is%20more%20-%20don%27t%20put%20too%20many%20views%20in%20the%20page.%20%0D%0ARule%20of%20thumb%20-%20no%20more%20than%20five%20reports%20in%20one%20page.%20%0D%0ADon%27t%20use%20scrolling%20-%20the%20average%20user%20won%27t%20scroll" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;title=Panorama%20Dashboard%20Design%20Tips&amp;bodytext=Here%20are%20some%20tips%20we%20collected%20over%20the%20years%20about%20dashboard%20design%3A%0D%0APage%20Layout%0D%0A%0D%0ALess%20is%20more%20-%20don%27t%20put%20too%20many%20views%20in%20the%20page.%20%0D%0ARule%20of%20thumb%20-%20no%20more%20than%20five%20reports%20in%20one%20page.%20%0D%0ADon%27t%20use%20scrolling%20-%20the%20average%20user%20won%27t%20scroll" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F%20Panorama%20Dashboard%20Design%20Tips" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;t=Panorama%20Dashboard%20Design%20Tips" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;title=Panorama%20Dashboard%20Design%20Tips" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;title=Panorama%20Dashboard%20Design%20Tips&amp;annotation=Here%20are%20some%20tips%20we%20collected%20over%20the%20years%20about%20dashboard%20design%3A%0D%0APage%20Layout%0D%0A%0D%0ALess%20is%20more%20-%20don%27t%20put%20too%20many%20views%20in%20the%20page.%20%0D%0ARule%20of%20thumb%20-%20no%20more%20than%20five%20reports%20in%20one%20page.%20%0D%0ADon%27t%20use%20scrolling%20-%20the%20average%20user%20won%27t%20scroll" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F&amp;title=Panorama%20Dashboard%20Design%20Tips&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=Here%20are%20some%20tips%20we%20collected%20over%20the%20years%20about%20dashboard%20design%3A%0D%0APage%20Layout%0D%0A%0D%0ALess%20is%20more%20-%20don%27t%20put%20too%20many%20views%20in%20the%20page.%20%0D%0ARule%20of%20thumb%20-%20no%20more%20than%20five%20reports%20in%20one%20page.%20%0D%0ADon%27t%20use%20scrolling%20-%20the%20average%20user%20won%27t%20scroll" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Panorama%20Dashboard%20Design%20Tips&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F04%2Fpanorama-dashboard-design-tips%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/04/panorama-dashboard-design-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying Panorama Views on Another Machine</title>
		<link>http://www.panorama.com/blog/2009/02/deploying-panorama-views-on-another-machine/</link>
		<comments>http://www.panorama.com/blog/2009/02/deploying-panorama-views-on-another-machine/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 13:23:16 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=137</guid>
		<description><![CDATA[In some of our projects, we develop the Panorama views in the development environment along with the Data Warehouse, the ETL, the Cubes, etc. That&#8217;s becauseÂ the customersÂ want to see how their product will look like before we deploy the views in the production environment. So, how do you deploy Panorama views from one environment to [...]]]></description>
			<content:encoded><![CDATA[<div>In some of our projects, we develop the Panorama views in the development environment along with the Data Warehouse, the ETL, the Cubes, etc. That&#8217;s becauseÂ the customersÂ want to see how their product will look like before we deploy the views in the production environment. So, how do you deploy Panorama views from one environment to the other?Â Â </p>
<ol>
<li>Create the new book &#8211; If it&#8217;s a new briefing book, create it using the Panorama NovaView Administrator program. If it&#8217;s already exist you can skip this step.</li>
<li>Copy the content &#8211; The book&#8217;s content is by default in c:\PanoramaFolder\E-BI\books\BookName. Copy the content of this directory from the dev machine to the production machine. This is not enought because the views are still looking at the dev environment, so:</li>
<li>Change the view&#8217;s properties &#8211; You need to have a very simple program (let&#8217;s call it PanoramaDeployUtil) that iterates over all the views in the given folder (and its sub folders, recursively) and change its properties. I recommend openingÂ the view&#8217;s file using xml reader and change the element \pnView\Root\Cube\Properties. You need to set its properties CubeAddress, CubeName &amp; CubeDB according to the new environment&#8217;s values (CubeAddress is theÂ server address). Just run this program and the views will look at the new environment.</li>
<li>Check &#8211; check yourself and make sure everything is ok by opening Panorama Web Access or Panorama Desktop and see that the values shown are the production&#8217;s values.</li>
</ol>
<p>Know thatÂ you can alwaysÂ open the Panorama Desktop and change the views one by one by hand.</p>
<p>Enjoy.</p></div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;title=Deploying%20Panorama%20Views%20on%20Another%20Machine&amp;notes=In%20some%20of%20our%20projects%2C%20we%20develop%20the%20Panorama%20views%20in%20the%20development%20environment%20along%20with%20the%20Data%20Warehouse%2C%20the%20ETL%2C%20the%20Cubes%2C%20etc.%20That%27s%20because%C3%82%C2%A0the%20customers%C3%82%C2%A0want%20to%20see%20how%20their%20product%20will%20look%20like%20before%20we%20deploy%20the%20views%20i" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;title=Deploying%20Panorama%20Views%20on%20Another%20Machine&amp;bodytext=In%20some%20of%20our%20projects%2C%20we%20develop%20the%20Panorama%20views%20in%20the%20development%20environment%20along%20with%20the%20Data%20Warehouse%2C%20the%20ETL%2C%20the%20Cubes%2C%20etc.%20That%27s%20because%C3%82%C2%A0the%20customers%C3%82%C2%A0want%20to%20see%20how%20their%20product%20will%20look%20like%20before%20we%20deploy%20the%20views%20i" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F%20Deploying%20Panorama%20Views%20on%20Another%20Machine" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;t=Deploying%20Panorama%20Views%20on%20Another%20Machine" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;title=Deploying%20Panorama%20Views%20on%20Another%20Machine" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;title=Deploying%20Panorama%20Views%20on%20Another%20Machine&amp;annotation=In%20some%20of%20our%20projects%2C%20we%20develop%20the%20Panorama%20views%20in%20the%20development%20environment%20along%20with%20the%20Data%20Warehouse%2C%20the%20ETL%2C%20the%20Cubes%2C%20etc.%20That%27s%20because%C3%82%C2%A0the%20customers%C3%82%C2%A0want%20to%20see%20how%20their%20product%20will%20look%20like%20before%20we%20deploy%20the%20views%20i" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F&amp;title=Deploying%20Panorama%20Views%20on%20Another%20Machine&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=In%20some%20of%20our%20projects%2C%20we%20develop%20the%20Panorama%20views%20in%20the%20development%20environment%20along%20with%20the%20Data%20Warehouse%2C%20the%20ETL%2C%20the%20Cubes%2C%20etc.%20That%27s%20because%C3%82%C2%A0the%20customers%C3%82%C2%A0want%20to%20see%20how%20their%20product%20will%20look%20like%20before%20we%20deploy%20the%20views%20i" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Deploying%20Panorama%20Views%20on%20Another%20Machine&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2009%2F02%2Fdeploying-panorama-views-on-another-machine%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2009/02/deploying-panorama-views-on-another-machine/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Leds Map</title>
		<link>http://www.panorama.com/blog/2008/05/the-leds-map/</link>
		<comments>http://www.panorama.com/blog/2008/05/the-leds-map/#comments</comments>
		<pubDate>Tue, 27 May 2008 20:46:53 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=110</guid>
		<description><![CDATA[I want to show you a work I finished few months ago. I&#8217;m very proud of this work as it will be in the desktop of our CEO and I got many compliments for it. Making this was possible thanks to the Panorama SDK.
There&#8217;s a problem getting out screenshots out of my company, so I [...]]]></description>
			<content:encoded><![CDATA[<p>I want to show you a work I finished few months ago. I&#8217;m very proud of this work as it will be in the desktop of our CEO and I got many compliments for it. Making this was possible thanks to the Panorama SDK.</p>
<p>There&#8217;s a problem getting out screenshots out of my company, so I did a <a href="http://www.miky-schreiber.com/Blog/content/binary/LedsMap.jpg">sketch</a> in Power Point. Note that what you see in the <a href="http://www.miky-schreiber.com/Blog/content/binary/LedsMap.jpg">picture</a> is not the real screenshot of the work (It&#8217;s much more beautiful in the reality&#8230;).</p>
<p>This is the functionality of the leds map (my design, if you have any comments):</p>
<ul>
<li>The leds map is simply a web site, meaning zero-footprint in the client&#8217;s computer. Some computers in my company has java compatibility problems, so I added a parameter you can send with the site&#8217;s URL which changes the applet&#8217;s java version (see more in the next post, which will be more technical).</li>
<li>The leds map has to be small, about a quarter of the screen. That&#8217;s because it&#8217;s intended to be <strong>a part of</strong> the CEO&#8217;s desktop.</li>
<li>When the map loads, a picture with a turning-around <a href="http://www.miky-schreiber.com/Blog/ct.ashx?id=aba352e5-8587-4723-bc4f-55233698cccc&#038;url=http%3a%2f%2fwww.statue.com%2fthe-thinker-statue.html">The Thinker</a> statue is shown with a &#8220;Loading&#8221; message below (our CEO loves that statue&#8230;).</li>
<li>After the map has been loaded, the user sees two axis with the leds in them. The two axis can represent any Meta-Measures you&#8217;d like: Short-Term Profit Vs. Long-Term Profit, Client&#8217;s Satisfaction Vs. Company&#8217;s Profit, etc. This is a point that many people have difficulty to understand, so I&#8217;ll give an example: The yellow led is in the top-right corner, so that says that the underlying measure is very important in both the meta-measures. Going on with the example, that says that this measure is very important for theClient&#8217;s Satisfaction <strong>and </strong>for the Company&#8217;s Profit. Note that <strong>the leds never move</strong>. Only their color changes.</li>
</ul>
<p><span id="more-110"></span></p>
<ul>
<li>When you move the cursor on a measure in the map, a small tooltip appears next to it. The tooltip shows the measure&#8217;s name and its value (You can see it in the left-bottom led). <em>Design Change:</em> <em>As my team master recommended, now each led has its measure&#8217;s name above it. The tooltip shows only the value.</em></li>
<li>When the map loads, only the red leds are shown. In the top-left corner of the screen, there&#8217;s three radio buttons which filters the shown leds by their colors. In the picture, all the leds are shown because all the radio buttons are enabled.</li>
<li>Clicking on a measure on the map drills-down to the different department&#8217;s leds, as you can see in the left side of the picture.</li>
<li>Clicking on a department&#8217;s led makes the map to vanish and instead of it there&#8217;s a drill-down of the department, meaning that the measures of its sub-departments are shown instead of the map.</li>
<li>After the last drill-down was made, there are two possible actions: Close the new view and return to the map or open the new view in full screen, where you can slice-and-dice and play with the data.</li>
</ul>
<p>In a future post I&#8217;ll describe how the leds map was built using the Panorama SDK.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;title=The%20Leds%20Map&amp;notes=I%20want%20to%20show%20you%20a%20work%20I%20finished%20few%20months%20ago.%20I%27m%20very%20proud%20of%20this%20work%20as%20it%20will%20be%20in%20the%20desktop%20of%20our%20CEO%20and%20I%20got%20many%20compliments%20for%20it.%20Making%20this%20was%20possible%20thanks%20to%20the%20Panorama%20SDK.%0D%0A%0D%0AThere%27s%20a%20problem%20getting%20out%20screensh" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;title=The%20Leds%20Map&amp;bodytext=I%20want%20to%20show%20you%20a%20work%20I%20finished%20few%20months%20ago.%20I%27m%20very%20proud%20of%20this%20work%20as%20it%20will%20be%20in%20the%20desktop%20of%20our%20CEO%20and%20I%20got%20many%20compliments%20for%20it.%20Making%20this%20was%20possible%20thanks%20to%20the%20Panorama%20SDK.%0D%0A%0D%0AThere%27s%20a%20problem%20getting%20out%20screensh" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F%20The%20Leds%20Map" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;t=The%20Leds%20Map" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;title=The%20Leds%20Map" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;title=The%20Leds%20Map&amp;annotation=I%20want%20to%20show%20you%20a%20work%20I%20finished%20few%20months%20ago.%20I%27m%20very%20proud%20of%20this%20work%20as%20it%20will%20be%20in%20the%20desktop%20of%20our%20CEO%20and%20I%20got%20many%20compliments%20for%20it.%20Making%20this%20was%20possible%20thanks%20to%20the%20Panorama%20SDK.%0D%0A%0D%0AThere%27s%20a%20problem%20getting%20out%20screensh" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F&amp;title=The%20Leds%20Map&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=I%20want%20to%20show%20you%20a%20work%20I%20finished%20few%20months%20ago.%20I%27m%20very%20proud%20of%20this%20work%20as%20it%20will%20be%20in%20the%20desktop%20of%20our%20CEO%20and%20I%20got%20many%20compliments%20for%20it.%20Making%20this%20was%20possible%20thanks%20to%20the%20Panorama%20SDK.%0D%0A%0D%0AThere%27s%20a%20problem%20getting%20out%20screensh" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=The%20Leds%20Map&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F05%2Fthe-leds-map%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2008/05/the-leds-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Panorama SDK: Dynamic Change of Views</title>
		<link>http://www.panorama.com/blog/2008/03/panorama-sdk-dynamic-change-of-views/</link>
		<comments>http://www.panorama.com/blog/2008/03/panorama-sdk-dynamic-change-of-views/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 13:24:50 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=97</guid>
		<description><![CDATA[With Panorama SDK you can do cool stuff as I will show you in the future. Though, There are important things you must know before you start. A very common task is to change the shown view views. Note that:
If you load the view using the Parameter &#8220;Alias&#8221; with the full view path (ends withÂ  [...]]]></description>
			<content:encoded><![CDATA[<p>With Panorama SDK you can do cool stuff as I will show you in the future. Though, There are important things you must know before you start. A very common task is to change the shown <strike>view</strike> views. Note that:</p>
<p>If you load the view using the Parameter &#8220;Alias&#8221; with the full view path (ends withÂ  &#8220;.xml&#8221;) you won&#8217;t be able to change the view later. Worse: The applet will not return an error. It will just won&#8217;t respond. So, if you want to enable the dynamic change of the view, in the &#8220;Alias&#8221; parameter only enter the name of the Briefing Book where the desired view is. Next, add another parameter named &#8220;FirstView&#8221; and there enter <strong>the relative path</strong> of the view, meaning that you&#8217;ll have to remove the name of the server and the briefing book&#8217;s name. Don&#8217;t forget to replace the back-slashes (\) in double-back-slashed (\\), otherwise&#8230; the applet won&#8217;t respond. Some examples:</p>
<p><span id="more-97"></span></p>
<p>use: AttachParameter(&#8221;Alias&#8221;, &#8220;http://////////myView.xml&#8221;); to show a view with no option to change it later (not recommended). Note that here you don&#8217;t need to use back-slash because this is just a regual URL.</p>
<p>use:<br />
AttachParameter(&#8221;Alias&#8221;,&#8221;myBriefingBook&#8221;);<br />
AttachParameter(&#8221;FirstView&#8221;,&#8221;\\\\myView.xml&#8221;);<br />
to show a view with an option to replace it later using the CallShowView function.</p>
<p>I recommend always using the second method. That&#8217;s because you can&#8217;t know what will be the next demand of your customer. Remember that this is a very common thing to do in the BI world.</p>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views&amp;notes=With%20Panorama%20SDK%20you%20can%20do%20cool%20stuff%20as%20I%20will%20show%20you%20in%20the%20future.%20Though%2C%20There%20are%20important%20things%20you%20must%20know%20before%20you%20start.%20A%20very%20common%20task%20is%20to%20change%20the%20shown%20view%20views.%20Note%20that%3A%0D%0A%0D%0AIf%20you%20load%20the%20view%20using%20the%20Parameter%20" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views&amp;bodytext=With%20Panorama%20SDK%20you%20can%20do%20cool%20stuff%20as%20I%20will%20show%20you%20in%20the%20future.%20Though%2C%20There%20are%20important%20things%20you%20must%20know%20before%20you%20start.%20A%20very%20common%20task%20is%20to%20change%20the%20shown%20view%20views.%20Note%20that%3A%0D%0A%0D%0AIf%20you%20load%20the%20view%20using%20the%20Parameter%20" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F%20Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;t=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views&amp;annotation=With%20Panorama%20SDK%20you%20can%20do%20cool%20stuff%20as%20I%20will%20show%20you%20in%20the%20future.%20Though%2C%20There%20are%20important%20things%20you%20must%20know%20before%20you%20start.%20A%20very%20common%20task%20is%20to%20change%20the%20shown%20view%20views.%20Note%20that%3A%0D%0A%0D%0AIf%20you%20load%20the%20view%20using%20the%20Parameter%20" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F&amp;title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=With%20Panorama%20SDK%20you%20can%20do%20cool%20stuff%20as%20I%20will%20show%20you%20in%20the%20future.%20Though%2C%20There%20are%20important%20things%20you%20must%20know%20before%20you%20start.%20A%20very%20common%20task%20is%20to%20change%20the%20shown%20view%20views.%20Note%20that%3A%0D%0A%0D%0AIf%20you%20load%20the%20view%20using%20the%20Parameter%20" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Panorama%20SDK%3A%20Dynamic%20Change%20of%20Views&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2008%2F03%2Fpanorama-sdk-dynamic-change-of-views%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2008/03/panorama-sdk-dynamic-change-of-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing multiple values in the Panorama Dashboard</title>
		<link>http://www.panorama.com/blog/2007/12/showing-multiple-values-in-the-panorama-dashboard/</link>
		<comments>http://www.panorama.com/blog/2007/12/showing-multiple-values-in-the-panorama-dashboard/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 19:23:40 +0000</pubDate>
		<dc:creator>Miky Schreiber</dc:creator>
				<category><![CDATA[NovaView Tips & Tricks]]></category>

		<guid isPermaLink="false">http://www.panorama.com/blog/?p=92</guid>
		<description><![CDATA[My team master Yaron asked me to check some things inÂ the Panorama Dashboards:Â Â Â 
1.Â Can have two hands in one gauge.
2. Can I show two values in the text of every gauge.Here are the answers. I think that the second answer is a beautiful one. In fact, I really enjoyed whileÂ I thought how to do this.
1. This [...]]]></description>
			<content:encoded><![CDATA[<div>My team master Yaron asked me to check some things inÂ the Panorama Dashboards:Â Â Â </p>
<p>1.Â Can have two hands in one gauge.<br />
2. Can I show two values in the text of every gauge.Here are the answers. I think that the second answer is a beautiful one. In fact, I really enjoyed whileÂ I thought how to do this.</p>
<p>1. This is simple: Just use the Goal hand as the second hand. In the KPI Wizard go to the Define Goal step and choose Custom formula. Enter the measure you want to see in the second hand.</p>
<p>2. This is beautiful: In the KPI Wizard, go to the Finish step and to the Title part. Click on the little blue arrow and click on &#8220;Edit MDX&#8230;&#8221;. Then, write this MDX:</p>
<p><span id="more-92"></span></p>
<p>[My Dimension].[My Hierarchy].CurrentMember.Name + &#8216;\n&#8217; +<br />
[Measures].[First Measure].Name + &#8216;: &#8216; +<br />
Generate({[My Dimension].[My Hierarchy].CurrentMember},[Measures].[First Measure]) + &#8216;\n&#8217; +<br />
[Measures].[Second Measure].Name + &#8216;: &#8216; +<br />
Generate({[My Dimension].[My Hierarchy].CurrentMember},[Measures].[Second Measure])</p>
<p>Note that:</p>
<ul>
<li>This way you can show many values and data, not only two values.</li>
<li>What theÂ Generate function doing there? The &#8216;+&#8217; operator needs to have two strings in both sides, so writing only the [Measures].[First Measure] or [Measures].[First Measure].Value will return a numeric value which will cause error. The Generate function used this way will return a string. It generates for the set (which contains only our member) the value of the measure (in the second argument of the formula) and as mentioned, returns it as string.</li>
<li>&#8216;\n&#8217; will jump to the next line</li>
</ul>
</div>

<div class="sociable">
<div class="sociable_tagline">
<strong>Share and Enjoy:</strong>
</div>
<ul>
	<li class="sociablefirst"><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F" title="Technorati"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://delicious.com/post?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard&amp;notes=My%20team%20master%20Yaron%20asked%20me%20to%20check%20some%20things%20in%C3%82%C2%A0the%20Panorama%20Dashboards%3A%C3%82%C2%A0%C3%82%C2%A0%C3%82%C2%A0%0D%0A%0D%0A1.%C3%82%C2%A0Can%20have%20two%20hands%20in%20one%20gauge.%0D%0A2.%20Can%20I%20show%20two%20values%20in%20the%20text%20of%20every%20gauge.Here%20are%20the%20answers.%20I%20think%20that%20the%20second%20answer%20is%20a%20bea" title="del.icio.us"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard&amp;bodytext=My%20team%20master%20Yaron%20asked%20me%20to%20check%20some%20things%20in%C3%82%C2%A0the%20Panorama%20Dashboards%3A%C3%82%C2%A0%C3%82%C2%A0%C3%82%C2%A0%0D%0A%0D%0A1.%C3%82%C2%A0Can%20have%20two%20hands%20in%20one%20gauge.%0D%0A2.%20Can%20I%20show%20two%20values%20in%20the%20text%20of%20every%20gauge.Here%20are%20the%20answers.%20I%20think%20that%20the%20second%20answer%20is%20a%20bea" title="Digg"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://twitter.com/home/?status=tip%20@Techmeme%20http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F%20Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard" title="Suggest to Techmeme via Twitter"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/techmeme.png" title="Suggest to Techmeme via Twitter" alt="Suggest to Techmeme via Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;t=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard" title="Facebook"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.blogospherenews.com/submit.php?url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard" title="Blogosphere News"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/blogospherenews.png" title="Blogosphere News" alt="Blogosphere News" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard&amp;annotation=My%20team%20master%20Yaron%20asked%20me%20to%20check%20some%20things%20in%C3%82%C2%A0the%20Panorama%20Dashboards%3A%C3%82%C2%A0%C3%82%C2%A0%C3%82%C2%A0%0D%0A%0D%0A1.%C3%82%C2%A0Can%20have%20two%20hands%20in%20one%20gauge.%0D%0A2.%20Can%20I%20show%20two%20values%20in%20the%20text%20of%20every%20gauge.Here%20are%20the%20answers.%20I%20think%20that%20the%20second%20answer%20is%20a%20bea" title="Google Bookmarks"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow" target="_blank" href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F&amp;title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard&amp;source=Panorama+Business+Intelligence+Making+businesses+better+-+not+just+better+informed&amp;summary=My%20team%20master%20Yaron%20asked%20me%20to%20check%20some%20things%20in%C3%82%C2%A0the%20Panorama%20Dashboards%3A%C3%82%C2%A0%C3%82%C2%A0%C3%82%C2%A0%0D%0A%0D%0A1.%C3%82%C2%A0Can%20have%20two%20hands%20in%20one%20gauge.%0D%0A2.%20Can%20I%20show%20two%20values%20in%20the%20text%20of%20every%20gauge.Here%20are%20the%20answers.%20I%20think%20that%20the%20second%20answer%20is%20a%20bea" title="LinkedIn"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow" target="_blank" href="http://www.friendfeed.com/share?title=Showing%20multiple%20values%20in%20the%20Panorama%20Dashboard&amp;link=http%3A%2F%2Fwww.panorama.com%2Fblog%2F2007%2F12%2Fshowing-multiple-values-in-the-panorama-dashboard%2F" title="FriendFeed"><img src="http://www.panorama.com/blog/wp-content/plugins/sociable/images/friendfeed.png" title="FriendFeed" alt="FriendFeed" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.panorama.com/blog/2007/12/showing-multiple-values-in-the-panorama-dashboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

