Displaying the value of a textbox in other parts of a report

前端 未结 1 826
借酒劲吻你
借酒劲吻你 2020-12-19 14:34

In a report table there is this formula to calculate a subtotal for an invoice. This is the formula:

=Sum(Fields!LineTotal.Value)

The textb

1条回答
  •  庸人自扰
    2020-12-19 15:02

    Have you tried creating a report variable? Create a new variable and put the invoice calculation into the expression for the new variable. Then reference the report variable from the two textboxes.

    The source for the two textboxes would look something like this:

    =Variables!TestVariable.Value
    

    http://msdn.microsoft.com/en-us/library/dd255208(SQL.105).aspx

    0 讨论(0)
提交回复
热议问题