You are here

public static function PHPExcel_Calculation_Functions::NaN in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php \PHPExcel_Calculation_Functions::NaN()

* NaN * * Returns the error value #NUM! * * @access public * @category Error Returns *

Return value

string #NUM!

127 calls to PHPExcel_Calculation_Functions::NaN()
FunctionsTest::testNaN in vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/FunctionsTest.php
PHPExcel_Calculation::calculateCellValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Calculate the value of a cell formula * * @access public *
PHPExcel_Calculation::_unwrapResult in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Remove quotes used as a wrapper to identify string values * *
PHPExcel_Calculation::_wrapResult in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Wrap string values in quotes * *
PHPExcel_Calculation_Database::DGET in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Database.php
* DGET * * Extracts a single value from a column of a list or database that matches conditions that you * specify. * * Excel Function: * DGET(database,field,criteria) * * @access public * @category Database Functions *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php, line 233

Class

PHPExcel_Calculation_Functions
PHPExcel_Calculation_Functions

Code

public static function NaN() {
  return self::$_errorCodes['num'];
}