You are here

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

* IS_NA * *

Parameters

mixed $value Value to check: * @return boolean

1 call to PHPExcel_Calculation_Functions::IS_NA()
PHPExcel_Calculation_Functions::IS_ERR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php
* IS_ERR * *

File

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

Class

PHPExcel_Calculation_Functions
PHPExcel_Calculation_Functions

Code

public static function IS_NA($value = '') {
  $value = self::flattenSingleValue($value);
  return $value === self::NA();
}