SSRS does not have a good built-in parameter for this.
So the options are:
- create your own shell interface to collect parameters = a lot of work, but a lot of flexibility.
- Create a drop-down list with all the possible options.
- Use a string or int (if you can get by with just a few hours.) And convert this as needed to your report or query. (Be careful: the
Time data type was introduced only in SQL 2008, so it may not work in some environments.)
source share