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 originalFROM
clause - Add
"T1."
in front of the original field names in theSELECT
clause - Add the the
JOIN ... AS T2 ON 1=1
clause - Add
", T2.Option01 "
(don’t forget the comma, and trailing space) to theSELECT
clause - Add the field to the
Now you can refer to BAQReportResults.Option01
in the tablix’s filter.