Report Navigator /text/shared/explorer/database/rep_navigator.xhp formulas in reports;editing functions in reports;editing Report Navigator You can open the Report Navigator window of the Report Builder by choosing View - Report Navigator. The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report. Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu. To enter functions to the report In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them. Functions can be entered using a syntax as specified by the OpenFormula proposal. See Wiki page about Base for some more help regarding the functions in a report. To calculate a sum for each clientcopied from a mail by Ocke - did not test Open the Report Navigator. Open the Groups entry and the group where you want to calculate the cost. The group has a sub entry called functions. Open the context menu (right click) on the functions entry, choose to create a new function, and select it. In the property browser you see the function. Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name]. In the initial value enter 0. Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box). Maybe you have to set the initial value to the value of the field like [field].these 3 paras copied from another mail by Ocke in users@dba.o.o If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero: [SumCost] + IF(ISBLANK([field]);0;[field])need some real working examples. See i81874Formula Enter the formula that defines the function. Use OpenFormula syntax.Initial value Enter the initial value for the evaluation of the formula. Often this is set to 0 or to 1.Deep traversing If Deep traversing is enabled, functions are evaluated considering all lower levels of hierarchy. This would be used for instance for line numbering. If Deep traversing is not enabled, only the first level of hierarchy is evaluated.Pre evaluation If Pre evaluation is enabled, functions are evaluated only when the report is finished.