Forum Replies Created

Viewing 15 posts - 181 through 195 (of 3,544 total)

Far away is close at hand in the images of elsewhere.
Anon.

  • Reply To: SSRS 2008 r2 - How to permit user to amend text and then use it in report

    Create a dataset that selects the address lines and set each address line parameter to use default from the dataset and use the parameter values in the report.

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Select Distinct results from just one Table/column

    How would you identify which Earners.feeBudFee to select out of the many?

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Dynamic Summing on Textbox

    cmw 66135 wrote:

    David you are an absolute legend. That worked perfectly Thank you 🙂

    Your welcome and thanks for the feedback 🙂

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Dynamic Summing on Textbox

    cmw 66135 wrote:

    PostingDetailsDate returns a date and time, not sure if thats the issue. Not even sure how to use the CDbl expression

    =Sum(
    CDbl(
    IIF(Year(Fields!PostingDetailsDate.Value)=Year(ToDay)
    AND Month(Fields!PostingDetailsDate.Value)=Month(ToDay),
    Fields!SplitBillsMasterSplitAmount.Value,
    0)
    )
    )

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Dynamic Summing on Textbox

    If you are not getting a syntax error then the problem is almost certainly to be the data.

    Is PostingDetailsDate a date or is it varchar containing a date?

    I have also...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Dynamic Summing on Textbox

    cmw 66135 wrote:

    Thanks David I got the following error The Value expression for the textrun ‘SplitBillsMasterSplitAmount.Paragraphs[0].TextRuns[0]’ contains an error: [BC30451] Name 'PostingDetailsDate' is not declared.  

    Sorry my bad, missed of Fields...

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Reply To: Dynamic Summing on Textbox

    This should give you what you want

    =Sum(
    IIF(Year(Fields!PostingDetailsDate.Value)=Year(ToDay)
    AND Month(Fields!PostingDetailsDate.Value)=Month(ToDay),
    Fields!SplitBillsMasterSplitAmount.Value,
    0)
    )

    • This reply was modified 7 years, 1 months ago by David Burrows. Reason: Fix missing Fields reference

    Far away is close at hand in the images of elsewhere.
    Anon.

  • Viewing 15 posts - 181 through 195 (of 3,544 total)