I have a report that pulls data from 2 different tables. The join is left outer because I want to see every record in the base table, and only records that match from the other table. This worked fine until I had to add selection criteria on the second table...which of course kills the left outer join and only returns those records for which the selection formula can be qualified (meaning it exists in the second table).
To get around this, I added the second table as a subreport. This works fine, except now I need to compare values from the first report to those in the subreport (IE if table1.field1 <> table2.field1, then return "false"). Is there a way to execute this kind of logic from one report to the other?
To get around this, I added the second table as a subreport. This works fine, except now I need to compare values from the first report to those in the subreport (IE if table1.field1 <> table2.field1, then return "false"). Is there a way to execute this kind of logic from one report to the other?