Report Hyperlinks

jsic1210

Registered User.
Local time
Today, 09:50
Joined
Feb 29, 2012
Messages
188
Hello all,

Is it possible to have a directory with hyperlinks in a report header? For example, there are 5 reasons a customer is not billed: University, Trial, Non-Billed, Consulting and Barter. The report header has each of those 5 listed. From that list, I want to click "University" and it takes me to the section of the report that has "University."

Thanks in advance!
Jeff
 
I could, but what my manager is looking for is more like links.
 
I know in 2007 & 2010 you can with buttons or even turn a label into a hyperlink (both inside and outside of the database). Do you want them just to open up those sections or do you want them to open the report to a corresponding record?
 
I believe the OP wants it to go to that section within the current report.
From that list, I want to click "University" and it takes me to the section of the report that has "University."

Thanks in advance!
Jeff
 
Okay, this is the code might help then:

DoCmd.OpenReport "ReportName", acViewReport, , "TextBoxName = '" & Me.FieldName & "'"
 

Users who are viewing this thread

Back
Top Bottom