 




<?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>IT Answers &#187; Crystal Reports XI</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/business-intelligence/crystal-reports-xi/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Wed, 22 May 2013 05:09:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Formula to take three date fields and create on date field with the most recent date.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/formula-to-take-three-date-fields-and-create-on-date-field-with-the-most-recent-date/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/formula-to-take-three-date-fields-and-create-on-date-field-with-the-most-recent-date/#comments</comments>
		<pubDate>Fri, 19 Apr 2013 22:10:04 +0000</pubDate>
		<dc:creator>CUFBL33801</dc:creator>
				<category><![CDATA[Crystal Reports formulas]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/formula-to-take-three-date-fields-and-create-on-date-field-with-the-most-recent-date/</guid>
		<description><![CDATA[New Discussion Post by TomLiotta]]></description>
				<content:encoded><![CDATA[New Discussion Post by TomLiotta]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/formula-to-take-three-date-fields-and-create-on-date-field-with-the-most-recent-date/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Crystal Reports XI &#8211; Finding records that need to have appointments rescheduled</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-xi-finding-records-that-need-to-have-appointments-rescheduled/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-xi-finding-records-that-need-to-have-appointments-rescheduled/#comments</comments>
		<pubDate>Mon, 11 Mar 2013 12:31:19 +0000</pubDate>
		<dc:creator>babeas</dc:creator>
				<category><![CDATA[Crystal Reports Record]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-xi-finding-records-that-need-to-have-appointments-rescheduled/</guid>
		<description><![CDATA[New Discussion Post by carlosdl]]></description>
				<content:encoded><![CDATA[New Discussion Post by carlosdl]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-xi-finding-records-that-need-to-have-appointments-rescheduled/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Crystal Reports- displaying calculations for date range prior to date search parameter</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-displaying-calculations-for-date-range-prior-to-date-search-parameter/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-displaying-calculations-for-date-range-prior-to-date-search-parameter/#comments</comments>
		<pubDate>Wed, 06 Jun 2012 14:57:51 +0000</pubDate>
		<dc:creator>STCPD</dc:creator>
				<category><![CDATA[Crystal Reports XI]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m working on a formula to calculate the number of criminal offenses that occurred in the same amount of days as my date search parameter but prior to the start date. The date search parameter is always changing. The idea is to compare the number of offenses from the last time period. I want to [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m working on a formula to calculate the number of criminal offenses that occurred in the same amount of days as my date search parameter but prior to the start date. The date search parameter is always changing. The idea is to compare the number of offenses from the last time period. I want to use the same report wheather it&#8217;s for a year, months, weeks or days.<br/><br/> For instance say my date search parameter is 5/1/2012 to 5/31/2012. <br/><br/> I can get the number of offenses easily by using: <br/><br/> {lwchrg.ucr_code}=&#8221;23F&#8221; AND {lwmain.zone} IN [&#8220;Z1&#8243;,&#8221;Z2&#8243;,&#8221;Z3&#8243;,&#8221;Z4&#8243;,&#8221;Z5&#8243;,&#8221;Z6&#8243;,&#8221;Z7&#8243;,&#8221;Z8&#8243;> <br/><br/> But I&#8217;m having trouble with the prior date portion. <br/><br/> This got me the number of days in the search parameter which in this example would be 30.                                                                    <br/><br/> numberVar days :=DateDiff (&#8220;d&#8221;,{?START DATE} , {?END DATE}) <br/><br/> This got me the start date that I was looking for which in this example would be 4/1/2012: <br/><br/> DateAdd (&#8220;d&#8221;,-numberVar days :=DateDiff (&#8220;d&#8221;,{?START DATE} , {?END DATE}) ,{?START DATE} ) <br/><br/> So I came up with this but it is not working. I get an error that says the formula cannot be a range. <br/><br/> DateAdd (&#8220;d&#8221;,-numberVar days :=DateDiff (&#8220;d&#8221;,{?START DATE} , {?END DATE}) ,{?START DATE} ) to dateadd (&#8220;d&#8221;,-1,{?START DATE})<br/><br/> Help please!<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-displaying-calculations-for-date-range-prior-to-date-search-parameter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Report 2008</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-2008/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-2008/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 16:35:36 +0000</pubDate>
		<dc:creator>kim1979</dc:creator>
				<category><![CDATA[Crystal Reports 2008]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We recently moved our report portal from Crystal Xi to Crystal 2008. Now the embedded images on the reports only display a text of &#8220;Image&#8221;. When I send the report to the printer the Image will then display. Does anyone have any idea how to get the image to display on the screen?]]></description>
				<content:encoded><![CDATA[<p>We recently moved our report portal from Crystal Xi to Crystal 2008. Now the embedded images on the reports only display a text of &#8220;Image&#8221;. When I send the report to the printer the Image will then display. Does anyone have any idea how to get the image to display on the screen?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/crystal-report-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Reports Paradox Tables &#8211; data problems</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/paradox-tables-data-problems/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/paradox-tables-data-problems/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 02:54:43 +0000</pubDate>
		<dc:creator>Bdsystems</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports Database]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>
		<category><![CDATA[Paradox]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am creating a report in Crystal XI using multiple paradox tables. If I use an idapi connection I lose data when I access the second table. If I switch to a DAO connection it runs very slow locally and will not event connect at all if I try to access the data from a [...]]]></description>
				<content:encoded><![CDATA[<p>I am creating a report in Crystal XI using multiple paradox tables. If I use an idapi connection I lose data when I access the second table. If I switch to a DAO connection it runs very slow locally and will not event connect at all if I try to access the data from a data server. It must run off the data on the server in production. Any suggestion.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/paradox-tables-data-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exception Join in Crystal Reports</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/exception-join-2/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/exception-join-2/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 13:47:58 +0000</pubDate>
		<dc:creator>GregInAtl</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports 11]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>
		<category><![CDATA[DB2 on AS400]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[How do I create an expection join in Crystal Reports 11. That is, I want ONLY the rows in FILEA that do not have a row in FILEB when joining them on FIELDX]]></description>
				<content:encoded><![CDATA[<p>How do I create an expection join in Crystal Reports 11. That is, I want ONLY the rows in FILEA that do not have a row in FILEB when joining them on FIELDX</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/exception-join-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Crystal Reports 2008 Version 12 Viewer, whats the class name field and what to put there?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-2008-version-12-viewer-whats-the-class-name-field-and-what-to-put-there/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-2008-version-12-viewer-whats-the-class-name-field-and-what-to-put-there/#comments</comments>
		<pubDate>Thu, 23 Jun 2011 19:01:15 +0000</pubDate>
		<dc:creator>Ricopersaud</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports 2008]]></category>
		<category><![CDATA[Crystal Reports 2008 controls]]></category>
		<category><![CDATA[Crystal Reports Projects]]></category>
		<category><![CDATA[Crystal Reports Viewer]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>
		<category><![CDATA[SAP Business One]]></category>
		<category><![CDATA[SAP Reports]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[In Crystal Reports 2008 version 12.  Im using the viewer to try and pull up the reports I created and designed to view outside of SAP Business 1, but im not sure what to put in the &#8220;class name&#8221; field. Can anyone help to what I should put there and the function of this field?]]></description>
				<content:encoded><![CDATA[<p>In Crystal Reports 2008 version 12.  Im using the viewer to try and pull up the reports I created and designed to view outside of SAP Business 1, but im not sure what to put in the &#8220;class name&#8221; field. <br/><br/> Can anyone help to what I should put there and the function of this field?<br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-2008-version-12-viewer-whats-the-class-name-field-and-what-to-put-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Reports XI period in database name</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/cr-xi-period-in-database-name/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/cr-xi-period-in-database-name/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 00:12:07 +0000</pubDate>
		<dc:creator>Fortuna</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2005 Database]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[SQL Server 2005 database has a period in its name. For example, data.12. I call a crystal report from VS2008. I use ConnectionInfo object to pass connection info to a report. I get errors in formulas. Renaming DB resolves the issue. How can I get it to work with names like data.12?]]></description>
				<content:encoded><![CDATA[<p>SQL Server 2005 database has a period in its name. For example, data.12. I call a crystal report from VS2008. I use ConnectionInfo object to pass connection info to a report. I get errors in formulas. Renaming DB resolves the issue.<br />
How can I get it to work with names like data.12?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/cr-xi-period-in-database-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sort Crystal Reports detail data once to process then again to display</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sort-crystal-detail-data-once-to-process-then-again-to-display/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sort-crystal-detail-data-once-to-process-then-again-to-display/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 14:59:27 +0000</pubDate>
		<dc:creator>Jenibean1130</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports Conditional Formatting]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a report in which I have to sort the details in a specific way in order to calculate summaries but for display purposes I want to sort in a different order. Is this possible in Crystal XI]]></description>
				<content:encoded><![CDATA[<p>I have a report in which I have to sort the details in a specific way in order to calculate summaries but for display purposes I want to sort in a different order. Is this possible in Crystal XI</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sort-crystal-detail-data-once-to-process-then-again-to-display/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Crystal Reports XI &#8211; Duplicate input parameters</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-xi-duplicate-input-parameters/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-xi-duplicate-input-parameters/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 04:02:50 +0000</pubDate>
		<dc:creator>NaviIT</dc:creator>
				<category><![CDATA[Crystal Reports]]></category>
		<category><![CDATA[Crystal Reports Conditional Parameters]]></category>
		<category><![CDATA[Crystal Reports XI]]></category>
		<category><![CDATA[duplicate parameters]]></category>
		<category><![CDATA[input parameters]]></category>
		<category><![CDATA[Parameters]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am creating a Report with the input parameter for all the sales representatives across multiple states. On the report input parameter the values listed are as follows: N/A User1 &#8211; CA User2 &#8211; CA User3 &#8211; CA N/A User1 &#8211; CO User2 &#8211; CO User3 &#8211; CO and so on. I am hard coding [...]]]></description>
				<content:encoded><![CDATA[<p>I am creating a Report with the input parameter for all the sales representatives across multiple states. On the report input parameter the values listed are as follows:<br />
N/A<br />
User1 &#8211; CA<br />
User2 &#8211; CA<br />
User3 &#8211; CA<br />
N/A<br />
User1 &#8211; CO<br />
User2 &#8211; CO<br />
User3 &#8211; CO<br />
and so on.<br />
I am hard coding N/A as the default value for each and every state, as crystal reports XI does not accept a blank value as the default.<br />
Is there a way to eliminate multiple occurrences of N/A from the input parameter? Is there a workaround where I can display only the users from each and every state, like<br />
User1 &#8211; CA<br />
User2 &#8211; CA<br />
User3 &#8211; CA<br />
User1 &#8211; CO<br />
User2 &#8211; CO<br />
User3 &#8211; CO<br />
and so on?<br />
Any help on this is greatly appreciated.<br />
Thank you!<br />
K</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/crystal-reports-xi-duplicate-input-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.013 seconds using memcached
Object Caching 904/905 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-22 06:32:41 -->