You are here

public static function PHPExcel_Calculation_Functions::NA 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::NA()

* NA * * Excel Function: * =NA() * * Returns the error value #N/A * #N/A is the error value that means "no value is available." * * @access public * @category Logical Functions *

Return value

string #N/A!

26 calls to PHPExcel_Calculation_Functions::NA()
FunctionsTest::testNA in vendor/phpoffice/phpexcel/unitTests/Classes/PHPExcel/Calculation/FunctionsTest.php
PHPExcel_Calculation_Engineering::CONVERTUOM in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* CONVERTUOM * * Converts a number from one measurement system to another. * For example, CONVERT can translate a table of distances in miles to a table of distances * in kilometers. * * Excel Function: * CONVERT(value,fromUOM,toUOM) …
PHPExcel_Calculation_Functions::ERROR_TYPE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php
* ERROR_TYPE * *
PHPExcel_Calculation_Functions::IS_NA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php
* IS_NA * *
PHPExcel_Calculation_LookupRef::HLOOKUP in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php
HLOOKUP The HLOOKUP function searches for value in the top-most row of lookup_array and returns the value in the same column based on the index_number.

... See full list

File

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

Class

PHPExcel_Calculation_Functions
PHPExcel_Calculation_Functions

Code

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