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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Achieve Mulitlevel Drill down in Crystal Reports 1

Status
Not open for further replies.

pko123

Programmer
Apr 17, 2007
27
US
Hi,
We have a requirement where we need to create mulitlevel drill down report along with summary numbers

For example
first level we want to show report for ITEMS
lets say

[ul]
[li]item A[/li]
[li]item B[/li]
[li]item C[/li]
[/ul]

if user click on itemA, that should expand

[ul square]
[li]item A[/li]
[ul circle]
[li]item i[/li]
[li]item ii[/li]
[/ul]
[li]item B[/li]
[li]item C[/li]
[/ul]

if user click on itemA & item B then only these two items should expand and item C remain the same

[ul square]
[li]item A[/li]
[ul circle]
[li]item i[/li]
[li]item ii[/li]
[/ul]
[li]item B[/li]
[ul circle]
[li]item i[/li]
[li]item ii[/li]
[/ul]
[li]item C[/li]
[/ul]

at last level if user click on item i under item A then that should expand further

[ul square]
[li]item A[/li]
[ul circle]
[li]item i[/li]
[ul square]
[li]item 1[/li]
[li]item 2[/li]
[/ul]
[li]item ii[/li]
[/ul]
[li]item B[/li]
[ul circle]
[li]item i[/li]
[li]item ii[/li]
[/ul]
[li]item C[/li]
[/ul]

Is it possible to create such a report in crystal or xcelsius or webi.
Please let me know if anybody knows.

thanks in advance
 
If you hide successive groups in Crystal you can drill down on selected group instances; however, each drilldown opens a new window, so you must navigate between windows. You cannot change the view in one window only in order to get an overview, which is what you appear to want to do.

-LB
 
This is called "in-place" drill-down and can only be done (AFAIK) in one way, using a third party viewer called DataLink Viewer. It also requires that you construct the report in a specific way. See the LINKS page on my site for more info on DLV.

Ken Hamady, On-site Custom Crystal Reports Training & Consulting
Public classes and individual training.
Guides to Formulas, Parameters, Subreports, Cross-tabs, VB, Tips and Tricks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top