Forum Replies Created

Viewing 15 posts - 46 through 60 (of 89 total)

  • RE: Date parameter

    The following will give you yesterday's date:

    In T-SQL

    DATEADD(dd,-1,GETDATE())

    In VB/SSRS

    =DATEADD("d",-1,NOW())

    HTH

    toolman

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Multi-Value parameter

    singhs2,

    Please copy and paste your exact syntax and the error message here. That may give us a clue why something that typically works every time is not working for...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Count Function

    Sorry. Didn't notice at first that you had different fields.

    Try

    =SUM(IIF(Fields!Status.Value = "C" AND Fields!Race = "W", 1, 0))

    I think that should work for you.

    Here's a couple good resources for...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Count Function

    Change your AND to OR. That should do it.

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Count Function

    Try

    =COUNT(IIF(Fields!Status.Value = "C", Fields!Status.Value, Nothing))

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Querying Reporting Services 2000 & 2005

    Found this on MSDN, maybe will help?

    http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=2656661&SiteID=1

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Querying Reporting Services 2000 & 2005

    I posed your situation to our DBAs. Here's their reponse and a little further explanation.

    "OK. He can try the following:

    1. Ensure that smtp mail...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: While Running SQL 2000 Reporting Services Report gets login Prompt

    Unfortunately that's fairly typical SSRS behavior for longish running reports. What's happening is you're hitting some kind of timeout. When that happens the user's stored credentials go out...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Querying Reporting Services 2000 & 2005

    My understanding of the advantages of shared vs. timed is primarily the server resources involved. Here is a comparison of the two prepared by one of our DBAs.

    "Shared...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Querying Reporting Services 2000 & 2005

    That's apparently the case when running subs as individual jobs (i.e. Timed Subscription) and not on Shared Schedules. At least that's when I get NULL values.

    Unfortunately, if you aren't...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Querying Reporting Services 2000 & 2005

    This may likely get you more (or less) than you want but it will set you in the right direction with the tables and columns to query. Hope it...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Reporting on Reporting Services

    Yes, you'll need to query the tables in the ReportServer database on your report server box.

    In particular look to these tables:

    catalog - contains data for deployed reports

    users...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: Subreport not aligning inside report upon deployment

    I think what's happening is your subreport placeholder remains the same width regardless of how your subreport renders. If your place holder is 3 columns wide in the main...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: How to Do a Subreport?

    I think what's happening is you don't have your main report and subreport linked properly. You're likely just getting info back from the first record in the subreport dataset.

    Does...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

  • RE: How to Do a Subreport?

    When you group on the voucher_ID, you will automatically get a header and footer for the group in addition to the table header and footer.

    You'll want your subreport in the...

    [font="Comic Sans MS"]toolman[/font]
    [font="Arial Narrow"]Numbers 6:24-26[/font]

Viewing 15 posts - 46 through 60 (of 89 total)