To concatenate the values of two text boxes to a third text box:
In Design mode, drag a text box from the Elements pane to the Content pane of a new or existing Dashboard section.
Copy and paste the operand1 text box, move it to the right of the + button.
The new text box is automatically renamed operand2 by Interactive Reporting.
Copy and paste the operand1 text box again and move it to the right of operand2.
Interactive Reporting automatically renames the new text box operand3.
txt_result.Text=operand1.Text+operand2.Text
To avoid typing errors, use the Object browser to navigate to Dashboard Objects, and then select the Text property for each text box. Type only the = and + operators.
Click OK to save the script and close the Script Editor.
In Run mode, type numbers in operand1 and operand2. They concatenate to txt_result after you click the + button.