You can edit the query expression for the BAQReportResult to join the Rpt Parameter table, like:
="SELECT T1.[PartTran_TranNum],T1.[PartTran_TranDate],T1.[PartTran_TranType],T1.[PartTran_PartNum],T1.[Calculated_TranDateYearPrior], T2.Option01 "
+ " FROM dbo.[BAQReportResult_" + Parameters!TableGuid.Value + "] AS T1"
+ " JOIN dbo.[BAQReportParameter_" + Parameters!TableGuid.Value + "] AS T2 ON 1=1"
edit
Just to be clear. I had to:
- Add the
"AS T1"to the query’s originalFROMclause - Add
"T1."in front of the original field names in theSELECTclause - Add the the
JOIN ... AS T2 ON 1=1clause - Add
", T2.Option01 "(don’t forget the comma, and trailing space) to theSELECTclause - Add the field to the
Now you can refer to BAQReportResults.Option01 in the tablix’s filter.