Well to explain the problem alittle better. I need to put multiple queries into a report. For example:
select cal.userid ,count (*) from cal cal, contgrps ch, contgrps cg
where cg.ref = 'FMB Challenge'
and cg.recid = ch.userid
and ch.accountno = cal.accountno
and cal.ondate > getdate() + 30
and cal.ondate < getdate() + 90
groupby cal.userid;
this query finds the total number of phone calls (in Goldmine) that are scheduled by each user longer than 30 days and less than 90 days. I have other queries that are similar to this that need to be in the report. However, they do use different database tables. Would subreports work on this??