Drop down box with 1 Manual option

  • Hi all,

    I would like to populate a drop down box from a query. and have one manually added option as well.

    I have written a tsql script that queries based on a Where column A = @result.

    If @result is 'discount' then it looks for discount in Column B

    For that i just created a IF statement. But im not sure how to impletment it in a report.

    In SSRS Parameters is based off a query

    select *

    from auditcategory

    thanks for any help.

    S

  • Hi anthony.greengave me a simple solution using

    select *

    from auditcategory

    UNION

    select 999, 'Discount'

    For the param query.

    Seems to get it working. Thanks Anthony again and apologies for ending up with double post on the same thing!

    S

Viewing 2 posts - 1 through 1 (of 1 total)

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