Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8031675
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T01:11:06+00:00 2026-06-05T01:11:06+00:00

I am trying to pass a report parameter to a stored procedure (@Time) to

  • 0

I am trying to pass a report parameter to a stored procedure (@Time) to dictate which Category values are returned in my data set via the WHERE clause and don’t know the syntax to accomplish this correctly. I suspect a case/if will need to be used and I’ve done this before but not when needing to do a WHERE clause IN.

DECLARE @Time AS NVARCHAR
SET @Time = 'REG' --possible values of 'REG' and 'OT'

SELECT
f.[Category]    AS [Category]

FROM foo f

WHERE
@Time =  
  CASE @Time
    WHEN 'REG' THEN f.[Category] IN (A, B, C, D)
    WHEN 'OT' THEN f.[Category] IN (E, F, G) 
END
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T01:11:08+00:00Added an answer on June 5, 2026 at 1:11 am

    First, when you declare a character variable, you should always include a length. So, you are declaring @Time to be one character. I think you want 3-characters.

    Second, when you declare an nvarchar() variable, assign an nvarchar() to it. The syntax is N’Reg’ rather than ‘Reg’.

    Third, what is in the IN list? Do you intend for these to be constants or columns in the data?

    And, finally, what you want for the WHERE clause is something like:

    WHERE (CASE WHEN @Time ='REG' and f.[Category] IN (A, B, C, D)  then 'true'
                WHEN @Time ='OT' THEN f.[Category] IN (E, F, G) then 'true'
                else 'false'
           end) = 'true'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to serialize a data structure and pass it to another report via
How do you pass a table valued parameter to a stored procedure with a
I'm trying to pass all data from a DB to a report: but I
Trying to pass in a user supplied string which has a path to the
Trying to pass a string argument to a function, which will then be used
I am trying to pass the fullcalendar events to my controller via Json, however
I'm trying to build a simple RDLC report that shows some data, and has
I am trying to create JR report which is taking start_date and end_date as
I am trying to pass the path of my picture through a parameter to
I am trying to create a URL link for a report and pass in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.