Prompt Users for a Variable in SSRS

  • I am building a SSRS report (my first report) that will pull all records from a single table. Before the data is populated in the report I would like to have SSRS prompt the users for an item number. Do I add the functionality in the stored procedure the report calls? Or, can a text parameter field be added directly in SSRS to filter just the data?

    Thanks!

    Edit: Attempted to change the post name.

  • You can create a report parameter then pass that parameter directly to the dataset when called. Or you can create a report parameter then pass that parameter to the procedure that creates the dataset. They are very similar.

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • It worked!! Thank you so much for your assistance.

  • I know this is closed, but it's better to pass the parameter to the stored procedure and filter there. Otherwise, you can send a lot of data to the SSRS server which then discards the data according to the filters you set. Sometimes that's not an option though.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply