I'm very new to SSRS and SQL and I'm creating a report in Report Builder 3.0.
I have no problem in creating a new blank report, adding a datasource and a dataset. My Dataset is pretty basic:
SELECT Employee_NO, Employee_Name
FROM Employees
I have added a parameter for Employee_Name so the user can select an employee. I have also created a hidden parameter for Employee_NO
I have added two boxes on the report: One for Employee_Name and one for Employee_No. The first box is populated with the selection from the Employee_Name parameter but I somehow need to populate the other box with the specified users Employee_No. How do I achieve this?