<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/jive/rss" version="2.0">
  <channel>
    <title>Adobe Community: Message List - Save Data in Report to Use later</title>
    <link>https://forums.adobe.com/community/coldfusion/coldfusion_reporting?view=discussions</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    <pubDate>Fri, 27 Jun 2014 18:47:11 GMT</pubDate>
    <generator>Jive Engage 7.0.0.1  (http://jivesoftware.com/products/)</generator>
    <dc:date>2014-06-27T18:47:11Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6503683?tstart=0#6503683</link>
      <description>&lt;!-- [DocumentBodyStart:554b8d20-f54f-46c2-a9ec-b55f021903da] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Is working now. I found some left over code on my report!&lt;/p&gt;&lt;p&gt;Thanks for your help.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:554b8d20-f54f-46c2-a9ec-b55f021903da] --&gt;&lt;img src='/beacon?t=1415918200534' /&gt;</description>
      <pubDate>Fri, 27 Jun 2014 18:47:11 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6503683?tstart=0#6503683</guid>
      <dc:date>2014-06-27T18:47:11Z</dc:date>
      <clearspace:dateToText>4 months 2 weeks ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6499335?tstart=0#6499335</link>
      <description>&lt;!-- [DocumentBodyStart:f9ed1bdc-caab-41d8-8b2f-a4eb5d44f3c2] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I created part of the query and tested it. It ran great, however, when I try to open my report I get: &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="content-container"&gt;&lt;fieldset&gt;&lt;h2&gt;500 - Internal server error.&lt;/h2&gt;&lt;h3&gt;There is a problem with the resource you are looking for, and it cannot be displayed.&lt;/h3&gt;&lt;/fieldset&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;My query is below. Why won't the report work? Right now the only data I display is the Name and FAFSA-Date&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;SELECT name.soc_sec, name.last_name, name.first_name, name.nickname, name.mi, name.camp_cod, dtFAFSA.comp_dt as FAFSA_Date&lt;/p&gt;&lt;p&gt;FROM Name&lt;/p&gt;&lt;p&gt;LEFT OUTER JOIN&lt;/p&gt;&lt;p&gt;(SELECT soc_sec, comp_dt FROM nmappchk as nmappchk_FAFSA WHERE appchk_cod = 'FF') as dtFAFSA&lt;/p&gt;&lt;p&gt; on name.soc_sec = dtFAFSA.soc_sec&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f9ed1bdc-caab-41d8-8b2f-a4eb5d44f3c2] --&gt;</description>
      <pubDate>Thu, 26 Jun 2014 13:40:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6499335?tstart=0#6499335</guid>
      <dc:date>2014-06-26T13:40:05Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6496297?tstart=0#6496297</link>
      <description>&lt;!-- [DocumentBodyStart:a2b0d42e-daff-43b2-80c7-e7a160563569] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I think I now have a better idea of what you are trying to accomplish.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;You don't need a sub-report to get each person's dates on the same line. It is best to do that in your query, for example:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;select table_name.UserName, dtFafsa.FafsaDate, dtLetterSent.LetterSentDate, dtLetterReceived.LetterReceivedDate&lt;br/&gt;from table_name left outer join&lt;br/&gt;(select userID, FafsaDate from table_name as table_name_fafsa where appchk_cod = 'FF') as dtFafsa on table_name.userID = dtFafsa.userID&lt;br/&gt;left outer join&lt;br/&gt;(select userID, LetterSentDate from table_name as table_name_LetterSent where appchk_cod = 'AS') as dtLetterSent on table_name.userID = dtLetterSent.userID&lt;br/&gt;left outer join&lt;br/&gt;(select userID, LetterReceivedDate from table_name as table_name_LetterReceived where appchk_cod = 'AR') as dtLetterReceived on table_name.userID = dtLetterReceived.userID&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;This is obviously not syntax checked, but it illustrates the concept.&lt;/p&gt;&lt;p&gt;Each derived table returns the date of each code. You will need a derived table for every code you want to report on.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a2b0d42e-daff-43b2-80c7-e7a160563569] --&gt;</description>
      <pubDate>Wed, 25 Jun 2014 17:06:33 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6496297?tstart=0#6496297</guid>
      <dc:date>2014-06-25T17:06:33Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6495877?tstart=0#6495877</link>
      <description>&lt;!-- [DocumentBodyStart:a3d3254c-051f-4e26-845c-eddd0cfbf592] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I finally created the sub-report. I am getting the correct output but it is not printing the data across the band. I created calculated fields to only show if the appchk_cod matched the column heading.&lt;/p&gt;&lt;p&gt;How can I save the dates for the different appchk_cod and print them in the same band? I want the report to look like:&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;strong&gt;&amp;nbsp; Disposition&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Filing&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAFSA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Award&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Award&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Jump Start&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Housing&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Housing&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FAFSA&amp;nbsp;&amp;nbsp;&amp;nbsp; Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Letter Sent&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Letter Rec'd&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Contract Rec'd&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Deposit Rec'd&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;Student Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Accepted&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 05/15/2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3/14/2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 06/14/2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 06/14/2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 06/14/2014&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It looks like this:&lt;/p&gt;&lt;p&gt;&lt;a href="https://forums.adobe.com/servlet/JiveServlet/showImage/2-6495877-649291/pastedImage_3.png"&gt;&lt;img alt="" class="jive-image image-1" height="171" src="https://forums.adobe.com/servlet/JiveServlet/downloadImage/2-6495877-649291/pastedImage_3.png" style="max-width: 1200px; max-height: 900px;" width="618"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:a3d3254c-051f-4e26-845c-eddd0cfbf592] --&gt;</description>
      <pubDate>Wed, 25 Jun 2014 15:29:49 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6495877?tstart=0#6495877</guid>
      <dc:date>2014-06-25T15:29:49Z</dc:date>
      <clearspace:dateToText>4 months 3 weeks ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6453108?tstart=0#6453108</link>
      <description>&lt;!-- [DocumentBodyStart:7b1b779b-ede3-4009-937e-e160b18df2bd] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;You're welcome. &lt;span aria-label="Happy" class="emoticon-inline emoticon_happy" style="height:16px;width:16px;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:7b1b779b-ede3-4009-937e-e160b18df2bd] --&gt;</description>
      <pubDate>Thu, 12 Jun 2014 14:22:05 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6453108?tstart=0#6453108</guid>
      <dc:date>2014-06-12T14:22:05Z</dc:date>
      <clearspace:dateToText>5 months 2 days ago</clearspace:dateToText>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6452807?tstart=0#6452807</link>
      <description>&lt;!-- [DocumentBodyStart:dda230e1-bafd-4188-bd8f-2a27446b2d51] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Thanks for your help and great suggestion! &lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:dda230e1-bafd-4188-bd8f-2a27446b2d51] --&gt;</description>
      <pubDate>Thu, 12 Jun 2014 12:10:30 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6452807?tstart=0#6452807</guid>
      <dc:date>2014-06-12T12:10:30Z</dc:date>
      <clearspace:dateToText>5 months 2 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6451291?tstart=0#6451291</link>
      <description>&lt;!-- [DocumentBodyStart:252ec087-b747-4537-8450-026673efab85] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;blockquote class="jive-quote"&gt;
&lt;p&gt;Cozmo2 wrote:&lt;/p&gt;
&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Using the three records above I want the report to print (I'm using the Name Group Footer):&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;From this reply it seems that by "one line" you mean "one report band".&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;The best way to show multiple records in a non-detail report band (like your Name Group Footer) is to use a sub-report.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:252ec087-b747-4537-8450-026673efab85] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 19:55:54 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6451291?tstart=0#6451291</guid>
      <dc:date>2014-06-11T19:55:54Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>6</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6451247?tstart=0#6451247</link>
      <description>&lt;!-- [DocumentBodyStart:b6a43f74-acf8-4274-ba4f-8041974a4e1e] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Using the three records above I want the report to print (I'm using the Name Group Footer):&lt;/p&gt;&lt;p&gt;&lt;strong&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/strong&gt;&lt;/p&gt;&lt;table border="1" cellpadding="0" cellspacing="0" style="border: none; padding: 0 5.4pt 0 5.4pt;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td colspan="1" style="border:1px solid black;border: none;"&gt;Name&lt;/td&gt;&lt;td colspan="1" style="border:1px solid black;border: none;"&gt;Start Date&lt;/td&gt;&lt;td colspan="1" style="border:1px solid black;border: none;"&gt;Transfer Date&lt;/td&gt;&lt;td colspan="1" style="border:1px solid black;border: none;"&gt;Promote Date&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Sue&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-left: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;01/15/2000&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-left: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;01/15/2005&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-left: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;border-top: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Mitch&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2004&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;border-top: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Sam&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2003&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;border-top: none;border-left: none;border-bottom: solid windowtext 1.0pt;border-right: solid windowtext 1.0pt;padding: 0 5.4pt 0 5.4pt;border: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2006&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:b6a43f74-acf8-4274-ba4f-8041974a4e1e] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 19:44:32 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6451247?tstart=0#6451247</guid>
      <dc:date>2014-06-11T19:44:32Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>7</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6451043?tstart=0#6451043</link>
      <description>&lt;!-- [DocumentBodyStart:ec9c988d-d2f1-473a-bf78-50bc15f8549c] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Okay, that limits your options somewhat.&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;Now, your example isn't clear what you want to do. What data in the three different records do you want to display on one line in the report?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:ec9c988d-d2f1-473a-bf78-50bc15f8549c] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 18:29:02 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6451043?tstart=0#6451043</guid>
      <dc:date>2014-06-11T18:29:02Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>8</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6451001?tstart=0#6451001</link>
      <description>&lt;!-- [DocumentBodyStart:acf6c6a5-906b-4d69-aaad-2df3affd8f7d] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I am using CF10 Report Builder.&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:acf6c6a5-906b-4d69-aaad-2df3affd8f7d] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 18:23:48 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6451001?tstart=0#6451001</guid>
      <dc:date>2014-06-11T18:23:48Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Re: Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6450574?tstart=0#6450574</link>
      <description>&lt;!-- [DocumentBodyStart:86270c83-ede5-4b7e-827e-47b374b3f127] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;Firstly, what are you using to create the report? cfreport, cfdocument or what?&lt;/p&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:86270c83-ede5-4b7e-827e-47b374b3f127] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:32:21 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6450574?tstart=0#6450574</guid>
      <dc:date>2014-06-11T15:32:21Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>10</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
    <item>
      <title>Save Data in Report to Use later</title>
      <link>https://forums.adobe.com/message/6450386?tstart=0#6450386</link>
      <description>&lt;!-- [DocumentBodyStart:f5754487-476e-4677-bdba-acacf3e75393] --&gt;&lt;div class="jive-rendered-content"&gt;&lt;p&gt;I have several names to report I need to combine data from several records of the same type with different codes. Not all names have the same codes. I want to report the data on one line. Is there a way to save date to be used later in the report?&lt;/p&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;For Example:&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code&amp;nbsp;&amp;nbsp; Start Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Code Transfer Date&amp;nbsp; Code&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Promote Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/strong&gt;&lt;/p&gt;&lt;table border="1" cellpadding="0" cellspacing="0" style="border: none; padding: 0 5.4pt 0 5.4pt;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Sue&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="53"&gt;&lt;p&gt;SD&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;01/15/2000&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="46"&gt;&lt;p&gt;TD&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;01/15/2005&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="46"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-left: none;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-top: none;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Mitch&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="53"&gt;&lt;p&gt;SD&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2004&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="46"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="46"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-top: none;border: solid windowtext 1.0pt;" valign="top" width="98"&gt;&lt;p&gt;Sam&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="53"&gt;&lt;p&gt;SD&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2003&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="46"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="46"&gt;&lt;p&gt;PD&lt;/p&gt;&lt;/td&gt;&lt;td style="border:1px solid black;border: none;padding: 0 5.4pt 0 5.4pt;border-right: solid windowtext 1.0pt;border-bottom: solid windowtext 1.0pt;border-left: none;border-top: none;" valign="top" width="98"&gt;&lt;p&gt;01/15/2006&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;!-- [DocumentBodyEnd:f5754487-476e-4677-bdba-acacf3e75393] --&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:06:41 GMT</pubDate>
      <author>forums_noreply@adobe.com</author>
      <guid>https://forums.adobe.com/message/6450386?tstart=0#6450386</guid>
      <dc:date>2014-06-11T15:06:41Z</dc:date>
      <clearspace:dateToText>5 months 3 days ago</clearspace:dateToText>
      <clearspace:replyCount>11</clearspace:replyCount>
      <clearspace:objectType>0</clearspace:objectType>
    </item>
  </channel>
</rss>

