Ike, The easiest way to deal with this would be to build a view between the table that report1 runs from and the table that relatedtrans runs from joining on Id#. If that tables are table1 and table2, your view would be something like this:
create view reportview as select * from table1, table2 where table1.id# = table2.id# Now create a new report that drives off of reportview and call it like: print newreport order by ID#=d where ID# = .vID# You need to create a breakpoint 1 on ID# in your new report. In the H1 (header1) section of the newreport, put the information that you used to have in report1. In the D (detail) section of the newreport, put the information from the relatedtrans report. Troy Sosamon Denver, Co. >===== Original Message From [EMAIL PROTECTED] ===== >Hi folks. > >I'm probably being dumb here, but with RBWin 6.5+ I want to print two >reports on one page. The second report is the equivalent of a tiered >region on a form listing transactions for that ID#. > >I used to suppress the form feeds in reports and then > >output printer >print report1 where ID# = .vID# >print relatedtrans order by ID#=d where ID# = .vID# >output screen > >Now, when I print from an eep in a form, I get two pages. One for each report. > > >What am I do I have to do? > >Ike > >================================================ >TO SEE MESSAGE POSTING GUIDELINES: >Send a plain text email to [EMAIL PROTECTED] >In the message body, put just two words: INTRO rbase-l >================================================ >TO UNSUBSCRIBE: send a plain text email to [EMAIL PROTECTED] >In the message body, put just two words: UNSUBSCRIBE rbase-l Troy Sosamon Denver Co [EMAIL PROTECTED] ================================================ TO SEE MESSAGE POSTING GUIDELINES: Send a plain text email to [EMAIL PROTECTED] In the message body, put just two words: INTRO rbase-l ================================================ TO UNSUBSCRIBE: send a plain text email to [EMAIL PROTECTED] In the message body, put just two words: UNSUBSCRIBE rbase-l
