Textbox Calculations | SQL Server Performance Forums

SQL Server Performance Forum – Threads Archive

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 Chaffin
aka Toni
Resolved by using TextBox3 syntax was:- =((ReportItems!TextBox1.Value)/(ReportItems!TextBox2.Value)) Regards
Toni Chaffin
aka Toni
]]>