Reporting Services with Parameter
I can not build a report correctly with reporting services using a select parameter can anyone point me in the right direct of a step by step article I would be very appreicative.
2 ways:
1) you have a parameters-tab for your dataset where you can define sql-parameters depending on your report parameters
eg @sqlparam=reportparam and use @sqlparam in your query
2) if your query is more complex, dont use the querybuilder and use a commandtext for the query
that looks like ="SELECT * FROM XY WHERE ab="+Parameters!par1.value
hope this helps you a bit