Forum Replies Created

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

  • RE: passing session data as a parameter into a multi parameter report

    Yes create a 3rd paramanter which will hold user data. Hide that parmater from the user but make the user selectable drop downs dinamic from the hidden one. To hide...

  • RE: Email Subscription Question

    I glad you removed the complexity.

  • RE: Subject line in e-mail report subscriptions

    If you are using a data driven subscription you can set a subject field to anything you want.

  • RE: Problem with Ranking

    I have used this logic in T-SQL to produce rankings.

     

     

    --Drop table #T1

    Create Table #T1

    (

    Rank int not null,

    DolAmt numeric(15,2) null,

    Ent varchar(5) null,

    Region varchar(5) null

    )

    INSERT  #T1   VALUES (0,1,'A','X')

    INSERT  #T1  VALUES (0,1.2,'B','X')

    INSERT  #T1 ...

  • RE: Hide Parameters list when viewing report

    If none of the above works. I have found that by going to the xml and putting an empty space between prompt tags you can effectively hide that parameter while...

  • RE: Average Function Help

    Whats the diffrence of the 2 sum divided by 2 and all six numbers divided by 6 . I think it is just a mater of scope and which group...

  • RE: SQL SEVER 2000 Developer in Livingston,N.J.

    Is there any chance of this becoming permanent ?

  • RE: Page Break

    Vandy,

    click on your list boarder or top left of your table, then right click properties . This should bring up a dialog box not the normal list on the right....

  • RE: Page Break

    Vandy,

    Page Breaks vary depending on format of report. For example exel will create a new page for each page break. However for the most part , you crate your page...

  • RE: Printing Reports from RS

    I have found that my pdf works as landscape if I set my Layout in the report to height of 8 1/2'' and width of 11''

  • RE: Totalling a subtotal column

    David,

    It is an easy fix. When you sum a field in the footer there is not requirment that it is the field that you used for the detail. In your...

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