Creating Hyperlink via VBA Code?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I wish to create hyperlink using vba code in a form which will allow me to
"drill down" or move around to preview various reports.

If I could geneate the hyperlink using vba, then I could create a new form
with new data and move around.

Any suggestions???


Thanks,

Gary
 
Hi,
for example to assign a label hyperlink to open Form1 you can use following
code:

Me.Label1.HyperlinkSubAddress = "Form Form1"
 
Back
Top