Check documentation for the latest version of dhtmlxSuite getCalculatedValue DHTMLX Docs

getCalculatedValue

Gets the calculated value of the specified cell (if a formula is specified for the cell the method returns the calculated value, not the formula text).

Parameters

  • $cell (string) - the cell coordinate (e.g. 'B1')

Return value

  • (string) the cell value

Example

$sh = new SpreadSheet($res, "1", $db_prefix);
 
$value = $sh->getCalculatedValue("B2");

See also: getValue, setValue

Back to top