Skip to content

TTMSFNCSpreadGrid

Description

Powerful spreadsheet function calculation support added to the full FNC Grid feature set.

TTMSFNCSpreadGrid

Features

TTMSFNCSpreadGrid extends the full power of TTMSFNCGrid with formulas.

  • Simple formula editing interface
  • Auto recalculation
  • Native XLS file import and export
  • Single cell recalculation, full recalculation
  • Extensive range of mathematical functions
  • Save with formulas or formula results only
  • Single cell references in formulas
  • Cell range formulas
  • Formula precision for grid on cell basis
  • Display formulas or formula results
  • Date / time functions
  • Intelligent formula aware copy and paste
  • Can be extended with custom functions
  • Cell names
  • Cell name mode can be RxCy style or A1-style
  • Inter TTMSFNCSpreadGrid instances cell references in formulas
  • Math library infrastructure to allow easy extending TTMSFNCSpreadGrid with custom functions

Cell acces and function overview

This is an overiew of using cell references and built-in functions in TTMSFNCSpreadGrid. Formulas can contain cell references, constants, single parameter functions, multi parameters functions, cell name references and cell range functions.

Cell references

If CellNameMode is nmRC then cell references are in RxCx format, where x is the row number and y is the column number. If CellNameMode is nmA1 then a cell reference consists of 2 parts : the column identifier and the row identifier. The column identifier is a character, starting from A for the first column, B for the second column, etc.. After column 26, the column identifier is a double character string AA, AB, etc... The row identifier starts at 1 for the first editable row.

Example

cell 1,1 is A1, cell 2,2 is B2, cell 27,27 is AA27

Cell ranges are specified by the top left cell and bottom right cell. As such, the first 15 cells in column 1, can be specified as A1:A15.

Cell formulas are by default relative. That means that when cell formulas are involved in copy & paste operations or row/column insert and delete, TTMSFNCSpreadGrid will automatically adapt the formulas to address the proper relative cells. Absolute cell addresses will not be modified during clipboard copy & paste operations or during row/column insert and delete. Prefix the cell address row or column part with '$' to indicate an absolute cell address.

Example

A$1 : A is a relative column address, 1 is an absolute row address

$B$2 : B is an absolute column address, 2 is an absolute row address

Cell ranges

Cell ranges are identified by topleft cell & bottomright cell split by ':'

Example

A1:B3 : specifies the range of cells from cell 1,1 to cell 2,3 $A$1:$B$3 : specifies an absolute cell range from cell 1,1 to cell 2,3

Constants

PI, E,True,False

Single parameter functions

Function name Description
ABS(parameter) absolute value
ROUND(parameter) rounds value
TRUNC(parameter) truncates value
CEILING(parameter; significance) rounds the parameter to the nearest multiple of significance
FRAC(parameter) returns fractional part of value
FACT(parameter) factioral of value
INT(parameter) int part of value
SIN(parameter) sine of value
COS(parameter) cosine of value
TAN(parameter) tangens of value
COTAN(parameter) cotangens of value
SINH(parameter) hyperbolic sine of value
COSH(parameter) hyperbolic cosine of value
TANH(parameter) hyperbolic tangens of value
COTANH(parameter) hyperbolic cotangens of value
ASIN(parameter) arcsin of value
ACOS(parameter) arccos of value
ATAN(parameter) arctangens of value
ACOTAN(parameter) arccotangens of value
LN(parameter) natural logarithm of value
LOG2(parameter) base 2 logarithm of value
LOG10(parameter) base 10 logarithm of value
EXP(parameter) exponential of value
RAND(parameter) random between 0 and value
RADIANS(parameter) converts degrees to radians
DEGREES(parameter) converts radians to degrees
SQR(parameter) square of value
SQRT(parameter) square root of value
CUBE(parameter) cubic square of value
CHS(parameter) change sign
POWER(parameter,exp) parameter to exponent exp

Multi parameter functions :

Function name Description
LT(param1;param2) returns 1 of param1>param2
ST(param1;param2) returns 1 of param1<param2
EQ(param1;param2) returns 1 of param1=param2 else 0
CHOOSE(sel;param1;param2) returns param1 if sel>0 else param2

Cell range functions

Function name Description
SUM(range) sum of all cell values in range
PRODUCT(rangfe) product of all cell values in range
AVERAGE(range average of all cell values in range
MIN(range) min. cell value in range
MAX(range) max. cell value in range
COUNT(range) nr. of cells in range
COUNTA(range) nr of non blank cells in range
COUNTIF(range;condition) nr of cells meeting condition in range
STDEV(range) standard deviation of range
STDEVP(range) standard deviation of total population of range
DEVSQ(range) sum of squares of deviations of range
VAR(range) variance of range

Date & Time functions

Function name Description
HOUR(parameter) gets the hour from a cell containing a valid time string
MIN(parameter) gets the minute from a cell containing a valid time string
SECOND(parameter) gets the second from a cell containing a valid time string
DAY(parameter) gets the day from a cell containing a valid time string
MONTH(parameter) gets the month from a cell containing a valid time string
YEAR(parameter) gets the year from a cell containing a valid time string
WEEKDAY(parameter) gets the day of the week from a cell containing a valid time string
TODAY gets the current day
NOW gets the current time

Logical functions

Function name Description
AND(parameters) logical AND function
OR((parameters) logical OR function
NAND(parameters) logical NAND function
NOR((parameters) logical NOR function
XOR((parameters) logical XOR function
NOT(parameter) logical NOT function
TRUE constant returning true
FALSE constant returning false

String functions

Function name Description
LEN(parameter) returns the length of a string value
LOWER(parameter) returns string in lowercase
UPPER(parameter) returns string in uppercase
CONCATENATE(parameter list) returns concatenated string of parameters
SUBSTITUTE(param text; param oldtext; param new text) returns string with oldtext replaced by newtext
LEFT(param string;len integer) returns first len charactares of string
RIGHT(param string;len integer) returns last len characters of string
MID(param string; pos; len: integer) returns len characters starting from position pos in string
TRIM(param) removes all spaces from text except spaces between words
SEARCH(find text; text) returns position of string find text in text
LOOKUP(param; range1, range2) returns the value of the element in range2 that has the index of the matching element in range1 for param
MATCH(lookup; range) returns the index of the element param in the range
INDEX(range; val1, val2) returns the value of element at index val1,val2 in the range

Custom function libraries

TTMSFNCSpreadGrid allows to use libraries that extend the built-in functions. A function library is a class that descends from TMathLib defined in the unit AdvPars. In order to be able to use multiple different function libraries simultaneously, a TMathLib component can be assigned to TTMSFNCSpreadGrid via TTMSFNCSpreadGrid.Libs. Add a new TLibBinderItem to TMSFNCSpreadGrid.Libs and assign the math lib instance to TLibBinderItem.MathLib.

Anatomy of TMathLib

TMathLib implements a number of public virtual functions that can be overridden to implement custom functions:

function HandlesFunction(FuncName:string):Boolean;

function HandlesStrFunction(FuncName:string):Boolean;

function CalcFunction(FuncName:string;Params:TParamList;var

ErrType,ErrParam: Integer):Double;

function CalcStrFunction(FuncName:string;Params:TStringList;var
ErrType,ErrParam: Integer):string;

Implemented functions

The methods HandlesFunction and HandlesStrFunction are simple methods being called by the TLibBinder and assumed to return true when the library implements the function with the name 'FuncName'.

Example

function TMiscMathLib.HandlesFunction(FuncName: string): boolean;
begin
 Result := (FuncName = 'HARMEAN') or
 (FuncName = 'GEOMEAN');
end;

This shows a library implementing 2 statistical functions HARMEAN and GEOMEAN. HandlesFunction should return true for functions that return a floating point result type. If a library implements a function with a string result, the HandlesStrFunction should be used.

Function calculation

The method CalcFunction implements the actual calculation of the function. The first parameter is the function name that should be calculated, the second parameter is a list of function parameters. The 2 last parameters can be set if an incorrect parameter is specified and the index of this incorrect parameter.

Example

function TMiscMathLib.CalcFunction(FuncName: string; Params: TParamList;
 var ErrType,ErrParam: Integer): Double;
var
 k: Integer;
 d: Double;
begin
 Result := 0.0;
 ErrType := Error_NoError;
 if FuncName = 'HARMEAN' then
 begin
 d := 0;
 for k := 1 to Params.Count do
 begin
 if Params.Items[k - 1] <> 0 then
 begin
 d := d + (1 / Params.Items[k - 1]);
 end
 else
 begin
 ErrType := Error_DivisionByZero;
 ErrParam := k - 1;
 end;
 Result := 1/d * Params.Count;
 end;
 Exit;
 end;
 if FuncName = 'GEOMEAN' then
 begin
 d := 1;
 for k := 1 to Params.Count do
 begin
 d := d * Params.Items[k - 1];
 end;
 if Params.Count > 0 then
 begin
 Result := exp(1/Params.Count * ln(d));
 end
 else
 begin
 ErrType := Error_DivisionByZero;
 ErrParam := 0;
 end;
 end;
end;

In this example, the functions HARMEAN and GEOMEAN are implemented. This shows how the method loops through the number of parameters passed to the function and calculates the result. As shown here in the code, a parameter of these functions cannot be zero. If a zero parameter is found, the method sets the error type to Error_DivisionByZero and if needed the index of the parameter that caused the actual error. The supported types of errors are:

Error name
Error_NoError = 0;
Error_NoFormula = 1;
Error_DivisionByZero = 2;
Error_InvalidValue = 3;
Error_InvalidCellRef = 4;
Error_InvalidRangeRef = 5;
Error_InvalidGridRef = 6;
Error_InvalidNrOfParams = 7;
Error_CircularReference = 8;
Error_NoOpenParenthesis = 9;
Error_NoCloseParenthesis = 10;
Error_PrematureEndOfFormula = 11;
Error_UnknownError = 12;
Error_InvalidQualifier = 13;
Error_InvalidTokenAtPosition= 14;
Error_Overflow = 15;
Error_Underflow = 16;
Error_CircularRange = 17;

The string function handling is equivalent, as shown in this sample code:

function TStringMathLib.CalcStrFunction(FuncName: string;
 Params: TStringList; var ErrType, ErrParam: Integer): String;
var
 i: Integer;
 s: string;
begin
 Result := '';
 ErrType := 0;
 if Params.Count = 0 then
 begin
 ErrType := Error_InvalidNrOfParams;
 Exit;
 end;
 Result := '';
 if FuncName = 'REVERSE' then
 begin
 s := Params.Strings[0];
 for i := 1 to Length(s) do
Result := Result + s[Length(s)- i + 1];
 end;
 if FuncName = 'CAPITALIZE' then
 begin
 s := Params.Strings[0];
 for i := 1 to Length(s) do
 if (i = 1) or ( (i > 1) and (s[i - 1]=' ')) then
 Result := Result + upcase(s[i])
 else
 Result := Result + s[i];
 end;
end;
function TStringMathLib.HandlesStrFunction(FuncName: string): Boolean;
begin
 Result := (FuncName = 'REVERSE') or
 (FuncName = 'CAPITALIZE');
end;