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

Show Detail

Status
Not open for further replies.

tjw2006

Programmer
Nov 16, 2006
103
GB
Is there a way to use a formula to set the 'Detail' section to 'Show' when it has been set as 'Hide(Drill-down OK) - could this formula be run by a link on the report?

Thanks
 
can you explain in little more detail like why you want to do it
 
It's just that I've got a drilldown report - where I drilldown to the detail level, but if I try to export the report, the detail level doesn't get exported, so I thought if there was a way to show the detail level before exporting, that might fix the problem.
 
Not that i know of,i had the same requirement .All i did was create other one with everything showing and export it.
Please post if you come across anything.
 
You can create a parameter {?ShowDetail} that you then use to conditionally suppress sections instead of using "hide", using a formula like this in the suppress->x+2 area for that section:

{?ShowDetail} = "No" and
drilldowngrouplevel = 0 //for group#2-first drilldown level

{?ShowDetail} = "No" and
drilldowngrouplevel < 2 //for details-second drilldown level

Then if you choose "Yes" all sections will appear; otherwise, you will have the drilldown functionality.

-LB
 
Yeah, thanks for that - I did think of that, but ideally I was looking for a way of doing this without having to run the report again, but I suppose running the report isn't a big deal. Shame you can't have events and variable value implementation in a live report.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top