You are here

33 calls to PHPExcel_Calculation_Functions::getCompatibilityMode() in Loft Data Grids 7.2

PHPExcel_Calculation::_executeBinaryComparisonOperation in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
PHPExcel_Calculation::_executeNumericBinaryOperation in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
PHPExcel_Calculation_DateTime::DAYOFWEEK in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* DAYOFWEEK * * Returns the day of the week for a specified date. The day is given as an integer * ranging from 0 to 7 (dependent on the requested style). * * Excel Function: * WEEKDAY(dateValue[,style]) * *
PHPExcel_Calculation_DateTime::HOUROFDAY in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* HOUROFDAY * * Returns the hour of a time value. * The hour is given as an integer, ranging from 0 (12:00 A.M.) to 23 (11:00 P.M.). * * Excel Function: * HOUR(timeValue) * *
PHPExcel_Calculation_DateTime::MINUTEOFHOUR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* MINUTEOFHOUR * * Returns the minutes of a time value. * The minute is given as an integer, ranging from 0 to 59. * * Excel Function: * MINUTE(timeValue) * *
PHPExcel_Calculation_DateTime::SECONDOFMINUTE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* SECONDOFMINUTE * * Returns the seconds of a time value. * The second is given as an integer in the range 0 (zero) to 59. * * Excel Function: * SECOND(timeValue) * *
PHPExcel_Calculation_DateTime::TIMEVALUE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* TIMEVALUE * * Returns a value that represents a particular time. * Use TIMEVALUE to convert a time represented by a text string to an Excel or PHP date/time stamp * value. * * NOTE: When used in a Cell Formula, MS Excel changes the cell…
PHPExcel_Calculation_DateTime::_getDateValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* _getDateValue * *
PHPExcel_Calculation_Engineering::BINTODEC in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* BINTODEC * * Return a binary value as decimal. * * Excel Function: * BIN2DEC(x) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Engineering::BINTOHEX in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* BINTOHEX * * Return a binary value as hex. * * Excel Function: * BIN2HEX(x[,places]) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Engineering::BINTOOCT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* BINTOOCT * * Return a binary value as octal. * * Excel Function: * BIN2OCT(x[,places]) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Engineering::DECTOBIN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* DECTOBIN * * Return a decimal value as binary. * * Excel Function: * DEC2BIN(x[,places]) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Engineering::DECTOHEX in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* DECTOHEX * * Return a decimal value as hex. * * Excel Function: * DEC2HEX(x[,places]) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Engineering::DECTOOCT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* DECTOOCT * * Return an decimal value as octal. * * Excel Function: * DEC2OCT(x[,places]) * * @access public * @category Engineering Functions *
PHPExcel_Calculation_Financial::DB in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* DB * * Returns the depreciation of an asset for a specified period using the * fixed-declining balance method. * This form of depreciation is used if you want to get a higher depreciation value * at the beginning of the depreciation (as…
PHPExcel_Calculation_Financial::DDB in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* DDB * * Returns the depreciation of an asset for a specified period using the * double-declining balance method or some other method you specify. * * Excel Function: * DDB(cost,salvage,life,period[,factor]) * * @access public *…
PHPExcel_Calculation_Financial::TBILLEQ in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* TBILLEQ * * Returns the bond-equivalent yield for a Treasury bill. * *
PHPExcel_Calculation_Financial::TBILLPRICE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* TBILLPRICE * * Returns the yield for a Treasury bill. * *
PHPExcel_Calculation_Financial::TBILLYIELD in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* TBILLYIELD * * Returns the yield for a Treasury bill. * *
PHPExcel_Calculation_Financial::_validFrequency in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
PHPExcel_Calculation_MathTrig::CEILING in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* CEILING * * Returns number rounded up, away from zero, to the nearest multiple of significance. * For example, if you want to avoid using pennies in your prices and your product is * priced at $4.42, use the formula =CEILING(4.42,0.05) to…
PHPExcel_Calculation_MathTrig::FACT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* FACT * * Returns the factorial of a number. * The factorial of a number is equal to 1*2*3*...* number. * * Excel Function: * FACT(factVal) * * @access public * @category Mathematical and Trigonometric Functions *
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 *
PHPExcel_Calculation_Statistical::AVEDEV in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* AVEDEV * * Returns the average of the absolute deviations of data points from their mean. * AVEDEV is a measure of the variability in a data set. * * Excel Function: * AVEDEV(value1[,value2[, ...]]) * * @access public * @category…
PHPExcel_Calculation_Statistical::AVERAGE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* AVERAGE * * Returns the average (arithmetic mean) of the arguments * * Excel Function: * AVERAGE(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::CHIDIST in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* CHIDIST * * Returns the one-tailed probability of the chi-squared distribution. * *
PHPExcel_Calculation_Statistical::COUNT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* COUNT * * Counts the number of cells that contain numbers within the list of arguments * * Excel Function: * COUNT(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::DEVSQ in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* DEVSQ * * Returns the sum of squares of deviations of data points from their sample mean. * * Excel Function: * DEVSQ(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::NEGBINOMDIST in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* NEGBINOMDIST * * Returns the negative binomial distribution. NEGBINOMDIST returns the probability that * there will be number_f failures before the number_s-th success, when the constant * probability of a success is probability_s. This…
PHPExcel_Calculation_Statistical::STDEV in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* STDEV * * Estimates standard deviation based on a sample. The standard deviation is a measure of how * widely values are dispersed from the average value (the mean). * * Excel Function: * STDEV(value1[,value2[, ...]]) * *…
PHPExcel_Calculation_Statistical::STDEVP in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* STDEVP * * Calculates standard deviation based on the entire population * * Excel Function: * STDEVP(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_TextData::ASCIICODE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php
* ASCIICODE * *
PHPExcel_Calculation_TextData::CONCATENATE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php
* CONCATENATE * *