Forum Replies Created

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

  • 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.

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

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

  • 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 🙂

  • 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)
    )
    )
  • 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...

  • 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...

  • 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 6 years, 4 months ago by David Burrows. Reason: Fix missing Fields reference
  • Reply To: Need advice using Identity Running Number as Primary Key

    Grant Fritchey wrote:

    Not a problem. Happy to help. Hopefully we hear from a few others as well. There is some degree of disagreement on this topic.

    Not from me 🙂

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