0

I am creating a report such that when you click on a data point it opens up another report providing the details of that datapoint. My problem is the parameter passing. What I want to pass is the information from that datapoint.

Thanks!

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
CodeKingPlusPlus
  • 15,383
  • 51
  • 135
  • 216
  • In the subreport that I am trying to open. I have a query that has the where clause: where prop_id = @ PropID So I want @PropID to be the parameter sent from the main report. – CodeKingPlusPlus Jun 26 '12 at 14:17

1 Answers1

0

Right-click the cell the you use to navigate to the sub-report and choose Properties. Click the Navigation tab. In the Hyperlink action section where it says Jump to Report click the Parameters button. This shows the parameters of the linked report and allows you to put expressions of what values you want to pass, such as field values, etc. To pass your parameter value, put in:

=Parameters!PropID.Value
Chris Latta
  • 20,316
  • 4
  • 62
  • 70