In an existing SSRS 2008 report, I need to add a parameter called State. The value for the field called state is defined
as a bit. State = 0 is for NE, State = 1 is for MN. I also need to add a selection for both where the user can select either MN or NE states.
Thus my questions are the following:
1. The value for both can be a bit value of either 0 or 1. Thus when assigning parameter values, how can I assign a value for 'BOTH' that means 1 or 0? I can assign NE to mean 0 and I can set 1 to mean MN. However I do not know how to
assign the value for 'both'?
Should I use a dataset to define the value? If so, can you how me the sql I can use to populate the values in a dropdown list box?
2. For the main query to get the values I want, how would I setup the sql? Would I use=@state or would I use
in (@state)?