Textbox Calculations

  • I have 2 text boxes on my report that contain values. I want to be able to divide one by the other and the result placed in a third. I have try some variants on the expression builder to do the sum but it won't have it. Obviously I can't use =Fields!etc as they are not fields in the soure data for the report.

    What is the syntax to basically say TextBox3Value = Result of (Textbox1.Value / Textbox2.Value)

    Regards

     

  • Toni,

    The expession TextBox3 should read.....

    =((ReportItems!TextBox1.Value)/(ReportItems!TextBox1.Value))

  • sorry .... should read ....

     

    =((ReportItems!TextBox1.Value)/(ReportItems!TextBox2.Value))

  • Thanks Jim

    Your assistance is much appreciated.

    Kindest Regards

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply