Forum Replies Created

Viewing 15 posts - 31 through 45 (of 55 total)

  • RE: Parameter Help

    Paul Morris-1011726 (4/10/2012)


    I have a set of reports that I am trying to consolidate into a single report using a drop down list for filtering.

    There are only 3 values:

    Printing =...

  • RE: Order By Statement Within DataSet Query

    Thanks. That worked. I knew I was over thinking it.

  • RE: SSRS Freezes with Paramater using wildcard

    themangoagent (4/17/2012)


    My query runs within 2 seconds using Management Studio, but when I put that query into a report in Visual Studio, the report won't run.

    Here's what the query looks...

  • RE: Show row number of displayed records

    just found that last blank page solution.

    In the Report Properties, there's an option called ConsumeContainerWhite. Select TRUE and the last page is gone.

  • RE: Show row number of displayed records

    I found a solution when I was wanting to display an 'x' number of records on each page.

    Dont know if this is what you're looking for but here it is.

    Create...

  • RE: Creating Labels from Right to Left

    Instead of data going like this

    Col1.......Col2.......col3

    data1.....data4.....data7

    data2.....data5.....data8

    data3.....data6.....data9

    I'm loking for this:

    Col1........col2.......col3

    data1......data2.....data3

    data4......data5.....data6

    data7......data8.....data9

    From what my manager explained to me, this is called a Avery label format.

  • RE: Displaying Percentage

    Gazareth (11/9/2011)


    Or Reporting Service has a field format of percent which would show 0.5 as 50%.

    I saw that and tried it, but didnt display what I wanted. Not sure why...

  • RE: Displaying Percentage

    Thanks for the reply. This is what I did after I posted the question.

    I made a huge IIF statement in the textbox:

    IIF(Parameters!Percentage.Value = "0.50", "50",

    IIF(Parameters!Percentage.Value = "0.51", "51",

    and so...

  • RE: Help With Making Part of Details Invisible

    If anyone is interested in a solution. Here goes:

    I used a statement called a Row/Partition within the select statement in my view. This is what I used:

    ROW_NUMBER() OVER(PARTITION BY Contact_NameID,...

  • RE: Help With Making Part of Details Invisible

    Daniel Bowlin (11/2/2011)


    If your parent group is based on Name, then add a header and put your name there instead of in the detail.

    I thought the same thing but that...

  • RE: Set Your Own Page Number

    I solved my own question. This is what I did.

    So I created a parameter called StartPageNumber.

    In the report footer, I created an expression:

    =Parameters!PageNumStart.Value + Globals!PageNumber - 1

    This allow you to...

  • RE: Using LEN, RIGHT, and LEFT

    Awesome thanks. I've been creating too many reports lately, didnt think about making a case statement. Thanks!

  • RE: Eliminating Empty Space

    After review the code, I got it working the way I wanted it.

  • RE: Eliminating Empty Space

    To resolve the issue with blank spaces within the name and addresses, I created an expression with a multiple IIF expressions. I tested it and it works as I want...

  • RE: Eliminating Empty Space

    Will this raise any of textboxes that are below the "empty" space?

    Thanks!

Viewing 15 posts - 31 through 45 (of 55 total)