Report Show Detail (1 Viewer)

jsic1210

Registered User.
Local time
Yesterday, 19:20
Joined
Feb 29, 2012
Messages
188
Hello,
I'm trying to create a report where I can use a section header as a hyperlink to show/hide detail, but only for that section. For example, my customer names are:
Code:
ABC Co.
ZYX Co.
123 Co.
If I click on ZYX Co., I want it to show the contracts for ONLY that customer:
Code:
ABC Co.
ZYX Co.
   Contract 1
   Contract 2
123 Co.
Right now, my code looks like this for On_Click:
Code:
If Me.Detail.Visible = False Then
    Me.Detail.Visible = True
Else
    Me.Detail.Visible = False
End If
But it shows and hides detail for ALL customers when I do this. Is there a way to only show/hide for the customer on which I click?
 

Mihail

Registered User.
Local time
Today, 02:20
Joined
Jan 22, 2011
Messages
2,373
But it shows and hides detail for ALL customers when I do this. Is there a way to only show/hide for the customer on which I click?
No.

But you can open the report for a certain customer(s) or without a certain customer(s)
 

Users who are viewing this thread

Top Bottom