public static function PHPExcel_Calculation_Functions::VALUE 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::VALUE()
* VALUE * * Returns the error value #VALUE! * * @access public * @category Error Returns *
Return value
string #VALUE!
165 calls to PHPExcel_Calculation_Functions::VALUE()
- FunctionsTest::testVALUE 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::_executeNumericBinaryOperation in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation.php - PHPExcel_Calculation_DateTime::DATE in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ DateTime.php - * DATE * * The DATE function returns a value that represents a particular date. * * NOTE: When used in a Cell Formula, MS Excel changes the cell format so that it matches the date * format of your regional settings. PHPExcel does not change…
- PHPExcel_Calculation_DateTime::DATEDIF in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ DateTime.php - * DATEDIF * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Functions.php, line 289
Class
- PHPExcel_Calculation_Functions
- PHPExcel_Calculation_Functions
Code
public static function VALUE() {
return self::$_errorCodes['value'];
}