Formulas
Formulas are objects that are computed at runtime, which allow you to manipulate field data by performing calculations on it. They control the data that will be displayed, and can even create new data that is not directly available from the database.
A formula is a symbolic statement of the manipulations that are to be performed on certain data before it is printed onto your report. For example, if your report contains an @Sales field and an @Cost field, and you want to create an @GrossProfit formula, you can designate its value as @Sales - @Cost. @GrossProfit is a simple formula that tells Logi JReport to subtract the value of the @Cost field from the value of the @Sales field, and then to print the result. Formulas can be used to calculate numeric values, compare one value to another, select alternative actions based on the comparison and join multiple text strings into a single string. In general, formulas can be used to:
- calculate information you cannot directly obtain from database data fields.
- compare data.
- join text with data.
- convert data from one form to another.
- enhance formatting options with text strings.
- do other things that customize your reports.
Logi JReport provides a number of built-in functions for you to build your formula. Also it provides user defined formula (UDF) functions that allow you to design your own formula functions.
The following topics provider more information on formulas:
- Formula Levels
- Formula Syntax
- Creating Formulas in a Catalog
- User Defined Formula Functions
- Using Formulas to Control Object Properties
Notes:
- You can only use JDK (not JRE) to compile formulas created in Logi JReport.
- Logi JReport formula searches for javac based on the java.home option, but this way may fail under some user environments. To ensure the formulas can work, you are recommended to use the javac_path option to specify the full path of javac yourself, for example, set
-Djavac_path=c:\jdk1.8.0\bin\javac.exe
in the startup file of Logi JReport.