May 16, 2006 at 3:52 am
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
May 16, 2006 at 8:17 am
Toni,
The expession TextBox3 should read.....
=((ReportItems!TextBox1.Value)/(ReportItems!TextBox1.Value))
May 16, 2006 at 8:18 am
sorry .... should read ....
=((ReportItems!TextBox1.Value)/(ReportItems!TextBox2.Value))
May 16, 2006 at 8:23 am
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