You are here

public function PHPExcel_Cell::getOldCalculatedValue in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php \PHPExcel_Cell::getOldCalculatedValue()

* Get old calculated value (cached) * This returns the value last calculated by MS Excel or whichever spreadsheet program was used to * create the original spreadsheet file. * Note that this value is not guaranteed to refelect the actual calculated value because it is * possible that auto-calculation was disabled in the original spreadsheet, and underlying data * values used by the formula have changed since it was last calculated. * *

Return value

mixed

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Cell.php, line 337

Class

PHPExcel_Cell
PHPExcel_Cell

Code

public function getOldCalculatedValue() {
  return $this->_calculatedValue;
}