-
1. Re: Save Data in Report to Use later
Eddie Lotter Jun 11, 2014 8:32 AM (in response to Cozmo2)Firstly, what are you using to create the report? cfreport, cfdocument or what?
-
2. Re: Save Data in Report to Use later
Cozmo2 Jun 11, 2014 11:23 AM (in response to Eddie Lotter)I am using CF10 Report Builder.
-
3. Re: Save Data in Report to Use later
Eddie Lotter Jun 11, 2014 11:29 AM (in response to Cozmo2)Okay, that limits your options somewhat.
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?
-
4. Re: Save Data in Report to Use later
Cozmo2 Jun 11, 2014 12:44 PM (in response to Eddie Lotter)Using the three records above I want the report to print (I'm using the Name Group Footer):
Name Start Date Transfer Date Promote Date Sue
01/15/2000
01/15/2005
Mitch
01/15/2004
Sam
01/15/2003
01/15/2006
-
5. Re: Save Data in Report to Use later
Eddie Lotter Jun 11, 2014 12:55 PM (in response to Cozmo2)Cozmo2 wrote:
Using the three records above I want the report to print (I'm using the Name Group Footer):
From this reply it seems that by "one line" you mean "one report band".
The best way to show multiple records in a non-detail report band (like your Name Group Footer) is to use a sub-report.
-
6. Re: Save Data in Report to Use later
Cozmo2 Jun 12, 2014 5:10 AM (in response to Eddie Lotter)Thanks for your help and great suggestion!
-
7. Re: Save Data in Report to Use later
Eddie Lotter Jun 12, 2014 7:22 AM (in response to Cozmo2)You're welcome.
-
8. Re: Save Data in Report to Use later
Cozmo2 Jun 25, 2014 8:29 AM (in response to Eddie Lotter)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.
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:
Disposition Filing FAFSA Award Award Jump Start Housing Housing
FAFSA Date Letter Sent Letter Rec'd Date Contract Rec'd Deposit Rec'd
Student Name Accepted 05/15/2014 3/14/2014 06/14/2014 06/14/2014 06/14/2014
It looks like this:
-
9. Re: Save Data in Report to Use later
Eddie Lotter Jun 25, 2014 10:06 AM (in response to Cozmo2)I think I now have a better idea of what you are trying to accomplish.
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:
select table_name.UserName, dtFafsa.FafsaDate, dtLetterSent.LetterSentDate, dtLetterReceived.LetterReceivedDate
from table_name left outer join
(select userID, FafsaDate from table_name as table_name_fafsa where appchk_cod = 'FF') as dtFafsa on table_name.userID = dtFafsa.userID
left outer join
(select userID, LetterSentDate from table_name as table_name_LetterSent where appchk_cod = 'AS') as dtLetterSent on table_name.userID = dtLetterSent.userID
left outer join
(select userID, LetterReceivedDate from table_name as table_name_LetterReceived where appchk_cod = 'AR') as dtLetterReceived on table_name.userID = dtLetterReceived.userIDThis is obviously not syntax checked, but it illustrates the concept.
Each derived table returns the date of each code. You will need a derived table for every code you want to report on.
-
10. Re: Save Data in Report to Use later
Cozmo2 Jun 26, 2014 6:40 AM (in response to Eddie Lotter)I created part of the query and tested it. It ran great, however, when I try to open my report I get:
My query is below. Why won't the report work? Right now the only data I display is the Name and FAFSA-Date
SELECT name.soc_sec, name.last_name, name.first_name, name.nickname, name.mi, name.camp_cod, dtFAFSA.comp_dt as FAFSA_Date
FROM Name
LEFT OUTER JOIN
(SELECT soc_sec, comp_dt FROM nmappchk as nmappchk_FAFSA WHERE appchk_cod = 'FF') as dtFAFSA
on name.soc_sec = dtFAFSA.soc_sec
-
11. Re: Save Data in Report to Use later
Cozmo2 Jun 27, 2014 11:47 AM (in response to Cozmo2)Is working now. I found some left over code on my report!
Thanks for your help.


