Forum Replies Created

Viewing 15 posts - 136 through 150 (of 173 total)

  • RE: Query to pull data aliasing the same field 3 times and using different criteria based on the 3 aliased fields. HELP!!!

    PIVOT(COUNT(AppDetails.AppID) FOR [Status] IN (A, I, D)) pvt

    mebbe need to put the text in quotes: FOR [Status] IN ('A','I','D')

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS 2nd page from 19 pages is blank

    pdf format is really picky about the margins. for letter size, you must set up the paper size letter - 8.5 x 11, set the report margins to .25...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Introduction to Indexes: Part 3 – The nonclustered index

    As with most everyone else, just wanted to say thanks for all the wonderfulness. Also, you are my hero and when [if] I grow up I want to be...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Getting Most Recent Date Records

    If you are looking just to find the max effective date for each person and type of job, just use the max and group by the rest:

    SELECT DISTINCT

    E.Name

    ,...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Calculating business days between 2 dates

    I am trying to calculate the number of business days between 2 dates. I don't want to include Saturday or Sunday in the calculation, or any dates that exist...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS Export to Excel in different excel files

    FYI - SSRS questions should probably be posted in the Reporting Services forums.

    If you mean that you want to split the report results onto separate worksheets within one...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Page Break At Start Is Ignored in SSRS 2008

    lrosini (5/21/2009)


    I hope I'm understanding your problem correctly. Do you have all subreports within the same tablix? If so that is the problem. In SSRS 2008 each subreport needs to...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Setting up a Parameter using a different dataset

    Create one dataset for your report details, join the Population table. (can't see what exactly to join to on the screen shot). This dataset should be filtered by...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: SSRS Formatting question

    We can't see a whole lot of detail on your screenshot, but it looks like you have the year in one big merged cell, and the text is set to...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Percentile function

    2008 has the NTile function, sounds like it might be a solution.

    http://msdn.microsoft.com/en-us/library/ms175126.aspx

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: sql query help

    Without more info this is just a stab in the dark, but as you are trying to find matches for the rows in the brinks table, perhaps you should try...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: ssrs help with grouping??

    After following the steps for adding the row group with header, delete the far left row group column that ssrs adds for you. Just delete column, not group. ...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: How to set To Date is always greater than Start Date or can we gray out the To Date fields which are lesser than Start Date?

    Maybe set a default value on the 2nd date parameter so that it gets an appropriate date. =DateAdd("d",10,Parameters!StartDate.Value)

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: Default parameter to All/None magic combo?

    You'll need to update the query/data set to handle null values for each of the three parameters

    Where

    SomeField = isNull(@SomeField, SomeField)

    and NextField = isNull(@NextField, NextField)

    and...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]
  • RE: lookup tables are in a separate database

    Why don't you use fields from both databases by using the fully qualified names in your query/dataset.

    select

    c.Prog

    ,c.Selection

    ,c.SelID

    ,r.Program

    ,r.Sel1

    ,r.WashType

    from

    configDB.dbo.tblSelection1 c

    inner join...

    [font="Courier New"]Looking for a Deadlock Victim Support Group..[/font]

Viewing 15 posts - 136 through 150 (of 173 total)