Using Formulas to Control Object Properties
One of the most useful features of formulas is that you can use them to control the property values of objects at runtime. This provides you with much more control, enabling you to customize your report and have flexibility to control the way you want the objects to display based on the return values. This topic describes how you can use formulas to control object properties, and presents an example about using a formula to specify the background color of a banded panel dynamically.
This topic contains the following sections:
- Setting a Formula as the Property Value
- Example 1: Changing the Banded Panel Background Color at Runtime
- Example 2: Showing a Label on Every Page Except the Last
Setting a Formula as the Property Value
While editing the property values of an object in the Report Inspector, when you select some properties, you may notice that Designer displays the formula button in their value cell (Designer also displays this button next to the value text boxes in some dialog boxes, for example, the Display Type dialog box and some chart format dialog boxes). For object properties and dialog box options of this type, you can use formulas to control their values.
To set a formula as the value of a property, select and it changes to another button . Select the drop-down button in the value cell and Designer displays a drop-down list. You can then select an existing formula from the list or select <New Formula...> to create a formula to return value to the property. For a crosstab in a query-based page report, if you have created crosstab formulas in the crosstab, they are also available in the drop-down list. You can select <New Crosstab Formula...> in the drop-down list to create a crosstab formula to use in the crosstab as well. However, when you want to use formulas to control properties of the objects whose parent does not relate with a data resource, for example, an object directly contained in the report body, you need to first bind data to the report body.
In addition, for most properties of this type in the Report Inspector, besides using formulas, you can edit expressions using the Formula Editor to control their values. An expression is actually a formula that is local to this report and is not stored in the catalog. When you specify an expression as the value of a property, Designer displays the expression result in the value cell. It is best practice to use expressions whenever possible to save space in your catalog; however, if you need the formula in several reports, use a formula rather than an expression.
- When you compose a new formula to control a property, make sure the data type of its return value is the same as the value type of the property; otherwise, Designer does not add the new formula as the value of the property, although it still creates the formula in the current catalog or for the current report.
- When using a formula to control the property of a data field such as a DBField, formula, summary, or parameter, you can declare a variable "declare" statement
<DATATYPE> __currentfield;
to refer to the data field, where __currentfield is the reserved variable name and <DATATYPE> is the data type of the data field. At runtime, __currentfield automatically obtains the value of the data field.
Example 1: Changing the Banded Panel Background Color at Runtime
This example uses the formula "MColor" to control the Background property of the detail panel of a banded report at runtime. You can find this formula in Data Source 1 of the SampleReports catalog.
The formula expression is:
String sc = "" + (@MColor_RecordNumber *10 );
Number idx = InStr(".",sc);
if(idx != -1)
sc = Left(sc, idx);
if(Length(sc) < 2)
sc = "0" + sc;
String s = "0x00" + sc + "7f";
return s
In this formula, we vary the middle hexadecimal digits of the RGB color values. The Red value is fixed at 0x00, the Blue value is fixed at 0x7f. The Green value changes according to the number of records displayed. Record 1 uses color 0x00107f, Record 2 uses 0x00207f, and so on.
Take the following steps to apply the formula to change the background color dynamically.
- Make sure SampleReports.cat is the currently open catalog file. If not, navigate to File > Open Catalog to open it from
<install_root>\Demo\Reports\SampleReports
.. - Create a page report with a standard banded object in it using a query stored in Data Source 1 of the catalog.
- In the design area, select the detail panel (DT) of the banded object.
- In the Properties sheet of the Report Inspector, select the value cell of the property Background, and select . From the drop-down list, select MColor.
- Select the View tab to preview the report. Designer displays the report somewhat as follows, depending on the report you use.
Example 2: Showing a Label on Every Page Except the Last
Suppose you have a report containing a banded object. You want to display the label "Continued on Next Page" on every page that has another following it. If you insert this label in the page header or page footer, every page including the last page contains the text. You can use formulas to control the visibility of the label to solve the problem.
- Create three formulas.
Continue1:
global boolean j=true;
j=false;Continue2:
PageNumber;
j=true;Continue3:
PageNumber;
return j; - Insert Continue1 into the banded header panel (BH), Continue2 into the banded footer panel (BF). To track the calculation, you can insert Continue3 into the banded page footer panel (BPF).
- Insert another banded page header panel before the existing BPH.
- Insert a label with the text "Continued on Next Page" in the newly added BPH panel and format the label as you want.
- Select the Continued on Next Page label, then in the Report Inspector, select Continue3 to control its Invisible property.
- Set the Record Location property of the label to Page Footer, so that Continue3 returns value which is calculated in the banded page footer.
Continue3 contains "PageNumber" so Logi Report Engine executes it as a page level formula in the order the formula is encountered rather than at the end of a group or the banded object.
- Select the View tab to preview the banded object. The label "Continued on Next Page" displays on every page except the last one.