I'm new to SSRS so I'm not sure if it's possible to do what I'm trying to do.
I have a tablix that is populated using Dataset1. One column of the tablix I'd like to populate using Dataset2. Dataset2 just returns a value based on a parameter passed in from the Dataset1 row.
I've tried using a report parameter, however, it seems to always populate the column value the same for all the rows.
Example:
Table is bound to Dataset1 that returns a bunch of car information along with a car id.
Dataset2 needs to take in the car id and it returns a value:
Select amount from carTable where id = [id passed in]
I need the value returned stored in the table populated by Dataset1. Both datasets use different datasources and that is why I need to do it like this.