I have a question regarding to show more than one value to drop down but use only one value as a parameter
My query
select custcode, custname from customertable
in return i will have two columns.. at SSRS i want a single dropdown which will show me these two data, but once user select a value, it should pass only customer code to parameter, how to do that with SSRS
select custcode + '-' + custname as label, custcode from customertable
– alejandro zuleta