Forum Replies Created

Viewing 15 posts - 61 through 75 (of 89 total)

  • RE: Checking for 0 gives no value in the Totals row

    Try converting your IIF result to an integer (or anything numeric i.e. CDbl, CDec, etc.) like this:

    =CInt(IIF( Fields!Sales.Value IsNothing or Fields!Sales.Value = 0 , "0", Fields!Sales.Value))

    HTH

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

  • RE: Need to show DateParameter in PageHeader

    Here's an item from another forum that may help:

    Data Fields in Page Header - a Solution From Bill Miller

    Here is an approach I am using to put data items...

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

  • RE: RS2000 / RS2005 Expressions/Syntax

    These should get you started.

    Expressions Commonly Used in Reporting Services

    http://msdn2.microsoft.com/en-us/library/ms157328.aspx

    List and Links to Visual Basic Function Definitions

    http://msdn2.microsoft.com/en-us/library/c157t28f(vs.71).aspx

    Common VB/.NET Number Format Codes

    Custom formatting:

    http://msdn2.microsoft.com/en-us/library/7x5bacwt(VS.71).aspx

    Standard formatting:

    http://msdn2.microsoft.com/en-us/library/dwhawy9k(VS.71).aspx

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

  • RE: Filter I SQl 2000 Reporting Services

    If Jack's method and my method didn't work, then I'm stumped (for now)

    Sorry

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

  • RE: Filter I SQl 2000 Reporting Services

    What's your entire filter statement?

    SSRS filters are inconsistent comparing numeric data. You may need to be creative and come up with a Boolean filter to accomplish what...

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

  • RE: Filter I SQl 2000 Reporting Services

    Is your Fields!Totals.Value numeric?

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

  • RE: IIF() Statement

    Try the InStr function. It returns an integer specifying the start position of the first occurrence of one string within another.

    Rephrasing your example, this is the syntax:

    =IIF(InStr("1,5,6,7,8,9,10,12,13,14,16,20,32,36,37,38,39,40", Fields!Item_id.Value) >...

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

  • RE: conditional formatting

    The only way I can think of to do that is to add a "Print Version" parameter. You can then set the backgrounds based on the parameter value.

    =IIF(Parameters!Print.Value =...

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

  • RE: Two part parameter

    Why don't you post your query script here. I'm sure someone can direct you once they know how you're collecting your data.

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

  • RE: when report is exported to pdf pages are skipping...

    Sounds like some part of your report is extending outside the page dimensions. That'll cause the every-other-page output. Make sure no part of your report plus the margins is...

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

  • RE: Format 2 Decimal points

    Try 0.00 instead of #.## or set the Format property of the text box to N2 (numeric with 2 decimal places) or D2 (decimal with 2 decimal places).

    Check these links...

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

  • RE: Get the Number of Columns from a Dataset

    I doubt you'll be able to actually programmatically set the number of table columns based on the dataset. At least I've never seen the means to do so...

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

  • RE: Timetable report

    Does your format demand the time periods across the top and days down the side? If it doesn't, I'd try it the other way around. It seems to...

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

  • RE: Nedd help with report designing

    Try locating your cells in a list data region. If it works the way I think it's supposed to (never use lists myself) that should let you free form...

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

  • RE: Using IIf Condition in SSRS 2005

    IIf(A < B, ((A/1000)*C), (B/1000)*C))

    Is there ever an instance where A = B?

    If so, you'll maybe want to use SWITCH instead of IIF. SWITCH evaluates a list...

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

Viewing 15 posts - 61 through 75 (of 89 total)