In a new ssrs 2008 r2 report, I need to display 2 of the parameter values in the heading of the report. One of the parameter values in the name and customer number. The second heading value is the city and state where the particular customer is located at.
The customer table has the following values:
a. cust_id int primary-id,
b. customer_name varchar(50),
c. cust_address1 varchar (50),
d. cust_address2 varchar (50),
e. cust_city_state varchar(40),
f. cust_zip_providence varchar(30),
g. cust_country varchar(30).
Thus I need to place the paramter values of customer_name and cust_city_state that are obtained from a dropdown list in the heading.
when I try =first(customer_name) in the heading, the value is only good for the first customer name. After that, the wrong parameter value is displayed.
Thus can you tell me and/or show me code of what I can do to place the parameter values
of customer_name and cust_city_state in the heading of the report?