public static function PHPExcel_Calculation_Functions::DIV0 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::DIV0()
* DIV0 * * @access public * @category Error Returns *
Return value
string #Not Yet Implemented
29 calls to PHPExcel_Calculation_Functions::DIV0()
- FunctionsTest::testDIV0 in vendor/
phpoffice/ phpexcel/ unitTests/ Classes/ PHPExcel/ Calculation/ FunctionsTest.php - PHPExcel_Calculation_Financial::DOLLARDE in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Financial.php - * DOLLARDE * * Converts a dollar price expressed as an integer part and a fraction * part into a dollar price expressed as a decimal number. * Fractional dollar numbers are sometimes used for security prices. * * Excel Function: …
- PHPExcel_Calculation_Financial::DOLLARFR in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Financial.php - * DOLLARFR * * Converts a dollar price expressed as a decimal number into a dollar price * expressed as a fraction. * Fractional dollar numbers are sometimes used for security prices. * * Excel Function: …
- PHPExcel_Calculation_MathTrig::ATAN2 in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ MathTrig.php - * ATAN2 * * This function calculates the arc tangent of the two variables x and y. It is similar to * calculating the arc tangent of y ÷ x, except that the signs of both arguments are used * to determine the quadrant of the result. * The…
- PHPExcel_Calculation_MathTrig::FLOOR in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ MathTrig.php - * FLOOR * * Rounds number down, toward zero, to the nearest multiple of significance. * * Excel Function: * FLOOR(number[,significance]) * * @access public * @category Mathematical and Trigonometric Functions *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Calculation/ Functions.php, line 201
Class
- PHPExcel_Calculation_Functions
- PHPExcel_Calculation_Functions
Code
public static function DIV0() {
return self::$_errorCodes['divisionbyzero'];
}