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

hyperlinking URL

Status
Not open for further replies.

suan1dhne

Programmer
Joined
Dec 3, 2004
Messages
1
Location
US
Can somebody please let me know how to build a linking expression with more than one parameter being passed.

I am going to have this expression in the category of the hperlink property of the chart.

"ARTTopDetail_34.rox?gRegId='"& Category & "'"

my hyperlink works fine for the above code but I have to pass 2 more parameters the start date and the end date.

In my calling program I have global parameters that hold the dates as prmBegDate and prmEndDate and the adhoc parameters to which I want to pass these parameters in ARTTopDetail_34.rod are prmBegDate1 and prmEndDate1.

Please help to build this expression will be greatly appreciated.

Thanks
 
Hi,
try this out:

"ARTTopDetail_34.rox?gRegId= " &Category& "&BeginDate=" &prmBegDate& "&EndDate=" &prmEndDate

All the best!

Cheers
Samir
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top