public static function PHPExcel_Calculation_Functions::IS_ERR in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php \PHPExcel_Calculation_Functions::IS_ERR()
* IS_ERR * *
Parameters
mixed $value Value to check: * @return boolean
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Functions.php, line 371
Class
- PHPExcel_Calculation_Functions
- PHPExcel_Calculation_Functions
Code
public static function IS_ERR($value = '') {
$value = self::flattenSingleValue($value);
return self::IS_ERROR($value) && !self::IS_NA($value);
}