Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reporting design problem

Status
Not open for further replies.

ulag

Programmer
Sep 4, 2001
23
0
0
US

select
clip.RiskStateId,
clim.DistributionSource as DistributionSource,
Field1 ,
field2,
Field3,
Field4
from
cli.policy as clip , cli.METLIFEPOLICY as clim
where
YEAR(clip.Expdt)= 2004
and MONTH(clip.Expdt)= 6
and clip.riskcheck=1
and field1=clim.IDnum
group by clip.riskStateId, clim.DistributionSource



I need to report like

RiskStateId
|
|
|--- Distribution Sources
| 1. Field1 Field2
| 2. Field1 Field2
| 3. Field1 Field2
|--- Distribution Sources
| 1. Field1 Field2
| 2. Field1 Field2
| 3. Field1 Field2

Can any one suggest me how to go?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top