Forum Replies Created

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

  • RE: Custom Code for Report Header

    Hi,

    Have you tryed passing report parameter from calling report?

    in main report while mapping with parameters add report heading as parameter and add the same parameter in sub report and show...

  • RE: Number format in SSRS

    Hi,

    Can you please elobrate your question in detail?

    if you just want to check for Negative value u can use

    =IIF(Field!Value < 0,"do something","do nothing")

  • RE: SSRS - Matrix - Get total

    hi thanks for your quick reply.. but sorry to say still dint clear my query

    look, i have simple qty field which is placed in detail section (value) without first(...) or...

  • RE: SSRS - Matrix - Get total

    i tryed using sub-total but that is pulling out wrong summation. its show the first value in total, i can try this at your end.

    i am using VS2003.

  • RE: SSRS Table and Matrix

    yes its possible to use matrix in table but u cannot use matrix in detail section of the table

  • RE: How to get PageNumber in body of RDL?

    hi sandeep,

    we don't wan't just to print page number the issue is we want this globle varialble of pagenumber inside table, body section... any idea???

  • RE: How to get PageNumber in body of RDL?

    In Code window add following function

    Public Function nPageNumber() as string

    dim str as String

    str = me.Report.Globals!PageNumber.ToString()

    Return str

    End Function

    ==============

    Call in table body section with the hepl of this line

    =Code.nPageNumber()

    ============

    Enjoy 🙂

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