You are here

65 calls to PHPExcel_Calculation_Functions::flattenArray() in Loft Data Grids 6.2

PHPExcel_Calculation::calculateCellValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Calculate the value of a cell formula * * @access public *
PHPExcel_Calculation::_processTokenStack in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
PHPExcel_Calculation::_showTypeDetails in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Format type and details of an operand for display in the log (based on operand type) * *
PHPExcel_Calculation::_showValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Format details of an operand for display in the log (based on operand type) * *
PHPExcel_Calculation_DateTime::NETWORKDAYS in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* NETWORKDAYS * * Returns the number of whole working days between start_date and end_date. Working days * exclude weekends and any dates identified in holidays. * Use NETWORKDAYS to calculate employee benefits that accrue based on the number…
PHPExcel_Calculation_DateTime::WORKDAY in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/DateTime.php
* WORKDAY * * Returns the date that is the indicated number of working days before or after a date (the * starting date). Working days exclude weekends and any dates identified as holidays. * Use WORKDAY to exclude weekends or holidays when…
PHPExcel_Calculation_Engineering::IMPRODUCT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* IMPRODUCT * * Returns the product of two or more complex numbers in x + yi or x + yj text format. * * Excel Function: * IMPRODUCT(complexNumber[,complexNumber[,...]]) * *
PHPExcel_Calculation_Engineering::IMSUM in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Engineering.php
* IMSUM * * Returns the sum of two or more complex numbers in x + yi or x + yj text format. * * Excel Function: * IMSUM(complexNumber[,complexNumber[,...]]) * *
PHPExcel_Calculation_Financial::FVSCHEDULE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* FVSCHEDULE * * Returns the future value of an initial principal after applying a series of compound interest rates. * Use FVSCHEDULE to calculate the future value of an investment with a variable or adjustable rate. * * Excel Function: …
PHPExcel_Calculation_Financial::IRR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* IRR * * Returns the internal rate of return for a series of cash flows represented by the numbers in values. * These cash flows do not have to be even, as they would be for an annuity. However, the cash flows must occur * at regular…
PHPExcel_Calculation_Financial::ISPMT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* ISPMT * * Returns the interest payment for an investment based on an interest rate and a constant payment schedule. * * Excel Function: * =ISPMT(interest_rate, period, number_payments, PV) * * interest_rate is the interest rate for…
PHPExcel_Calculation_Financial::MIRR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* MIRR * * Returns the modified internal rate of return for a series of periodic cash flows. MIRR considers both * the cost of the investment and the interest received on reinvestment of cash. * * Excel Function: …
PHPExcel_Calculation_Financial::NPV in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* NPV * * Returns the Net Present Value of a cash flow series given a discount rate. * *
PHPExcel_Calculation_Financial::XIRR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
PHPExcel_Calculation_Financial::XNPV in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Financial.php
* XNPV * * Returns the net present value for a schedule of cash flows that is not necessarily periodic. * To calculate the net present value for a series of cash flows that is periodic, use the NPV function. * * Excel Function: …
PHPExcel_Calculation_Logical::LOGICAL_AND in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php
* LOGICAL_AND * * Returns boolean TRUE if all its arguments are TRUE; returns FALSE if one or more argument is FALSE. * * Excel Function: * =AND(logical1[,logical2[, ...]]) * * The arguments must evaluate to logical values such as TRUE…
PHPExcel_Calculation_Logical::LOGICAL_OR in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Logical.php
* LOGICAL_OR * * Returns boolean TRUE if any argument is TRUE; returns FALSE if all arguments are FALSE. * * Excel Function: * =OR(logical1[,logical2[, ...]]) * * The arguments must evaluate to logical values such as TRUE or FALSE, or…
PHPExcel_Calculation_LookupRef::CHOOSE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php
* CHOOSE * * Uses lookup_value to return a value from the list of value arguments. * Use CHOOSE to select one of up to 254 values based on the lookup_value. * * Excel Function: * =CHOOSE(index_num, value1, [value2], ...) * *
PHPExcel_Calculation_LookupRef::MATCH in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/LookupRef.php
* MATCH * * The MATCH function searches for a specified item in a range of cells * * Excel Function: * =MATCH(lookup_value, lookup_array, [match_type]) * *
PHPExcel_Calculation_MathTrig::GCD in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* GCD * * Returns the greatest common divisor of a series of numbers. * The greatest common divisor is the largest integer that divides both * number1 and number2 without a remainder. * * Excel Function: * GCD(number1[,number2[,…
PHPExcel_Calculation_MathTrig::LCM in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* LCM * * Returns the lowest common multiplier of a series of numbers * The least common multiple is the smallest positive integer that is a multiple * of all integer arguments number1, number2, and so on. Use LCM to add fractions * with…
PHPExcel_Calculation_MathTrig::MULTINOMIAL in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* MULTINOMIAL * * Returns the ratio of the factorial of a sum of values to the product of factorials. * *
PHPExcel_Calculation_MathTrig::PRODUCT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* PRODUCT * * PRODUCT returns the product of all the values and cells referenced in the argument list. * * Excel Function: * PRODUCT(value1[,value2[, ...]]) * * @access public * @category Mathematical and Trigonometric Functions *
PHPExcel_Calculation_MathTrig::QUOTIENT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* QUOTIENT * * QUOTIENT function returns the integer portion of a division. Numerator is the divided number * and denominator is the divisor. * * Excel Function: * QUOTIENT(value1[,value2[, ...]]) * * @access public * @category…
PHPExcel_Calculation_MathTrig::SERIESSUM in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SERIESSUM * * Returns the sum of a power series * *
PHPExcel_Calculation_MathTrig::SUBTOTAL in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUBTOTAL * * Returns a subtotal in a list or database. * *
PHPExcel_Calculation_MathTrig::SUM in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUM * * SUM computes the sum of all the values and cells referenced in the argument list. * * Excel Function: * SUM(value1[,value2[, ...]]) * * @access public * @category Mathematical and Trigonometric Functions *
PHPExcel_Calculation_MathTrig::SUMIF in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMIF * * Counts the number of cells that contain numbers within the list of arguments * * Excel Function: * SUMIF(value1[,value2[, ...]],condition) * * @access public * @category Mathematical and Trigonometric Functions *
PHPExcel_Calculation_MathTrig::SUMPRODUCT in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMPRODUCT * * Excel Function: * SUMPRODUCT(value1[,value2[, ...]]) * * @access public * @category Mathematical and Trigonometric Functions *
PHPExcel_Calculation_MathTrig::SUMSQ in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMSQ * * SUMSQ returns the sum of the squares of the arguments * * Excel Function: * SUMSQ(value1[,value2[, ...]]) * * @access public * @category Mathematical and Trigonometric Functions *
PHPExcel_Calculation_MathTrig::SUMX2MY2 in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMX2MY2 * *
PHPExcel_Calculation_MathTrig::SUMX2PY2 in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMX2PY2 * *
PHPExcel_Calculation_MathTrig::SUMXMY2 in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/MathTrig.php
* SUMXMY2 * *
PHPExcel_Calculation_Statistical::AVERAGEIF in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* AVERAGEIF * * Returns the average value from a range of cells that contain numbers within the list of arguments * * Excel Function: * AVERAGEIF(value1[,value2[, ...]],condition) * * @access public * @category Mathematical and…
PHPExcel_Calculation_Statistical::COUNTA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* COUNTA * * Counts the number of cells that are not empty within the list of arguments * * Excel Function: * COUNTA(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::COUNTBLANK in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* COUNTBLANK * * Counts the number of empty cells within the list of arguments * * Excel Function: * COUNTBLANK(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::COUNTIF in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* COUNTIF * * Counts the number of cells that contain numbers within the list of arguments * * Excel Function: * COUNTIF(value1[,value2[, ...]],condition) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::GEOMEAN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* GEOMEAN * * Returns the geometric mean of an array or range of positive data. For example, you * can use GEOMEAN to calculate average growth rate given compound interest with * variable rates. * * Excel Function: …
PHPExcel_Calculation_Statistical::GROWTH in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* GROWTH * * Returns values along a predicted emponential trend * *
PHPExcel_Calculation_Statistical::HARMEAN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* HARMEAN * * Returns the harmonic mean of a data set. The harmonic mean is the reciprocal of the * arithmetic mean of reciprocals. * * Excel Function: * HARMEAN(value1[,value2[, ...]]) * * @access public * @category Statistical…
PHPExcel_Calculation_Statistical::LARGE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* LARGE * * Returns the nth largest value in a data set. You can use this function to * select a value based on its relative standing. * * Excel Function: * LARGE(value1[,value2[, ...]],entry) * * @access public * @category…
PHPExcel_Calculation_Statistical::LINEST in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* LINEST * * Calculates the statistics for a line by using the "least squares" method to calculate a straight line that best fits your data, * and then returns an array that describes the line. * *
PHPExcel_Calculation_Statistical::LOGEST in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* LOGEST * * Calculates an exponential curve that best fits the X and Y data series, * and then returns an array that describes the line. * *
PHPExcel_Calculation_Statistical::MAX in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MAX * * MAX returns the value of the element of the values passed that has the highest value, * with negative numbers considered smaller than positive numbers. * * Excel Function: * MAX(value1[,value2[, ...]]) * * @access public …
PHPExcel_Calculation_Statistical::MAXA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MAXA * * Returns the greatest value in a list of arguments, including numbers, text, and logical values * * Excel Function: * MAXA(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::MAXIF in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MAXIF * * Counts the maximum value within a range of cells that contain numbers within the list of arguments * * Excel Function: * MAXIF(value1[,value2[, ...]],condition) * * @access public * @category Mathematical and Trigonometric…
PHPExcel_Calculation_Statistical::MEDIAN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MEDIAN * * Returns the median of the given numbers. The median is the number in the middle of a set of numbers. * * Excel Function: * MEDIAN(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::MIN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MIN * * MIN returns the value of the element of the values passed that has the smallest value, * with negative numbers considered smaller than positive numbers. * * Excel Function: * MIN(value1[,value2[, ...]]) * * @access public …
PHPExcel_Calculation_Statistical::MINA in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MINA * * Returns the smallest value in a list of arguments, including numbers, text, and logical values * * Excel Function: * MINA(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::MINIF in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MINIF * * Returns the minimum value within a range of cells that contain numbers within the list of arguments * * Excel Function: * MINIF(value1[,value2[, ...]],condition) * * @access public * @category Mathematical and…
PHPExcel_Calculation_Statistical::MODE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* MODE * * Returns the most frequently occurring, or repetitive, value in an array or range of data * * Excel Function: * MODE(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::PERCENTILE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* PERCENTILE * * Returns the nth percentile of values in a range.. * * Excel Function: * PERCENTILE(value1[,value2[, ...]],entry) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::PERCENTRANK in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* PERCENTRANK * * Returns the rank of a value in a data set as a percentage of the data set. * *
PHPExcel_Calculation_Statistical::QUARTILE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* QUARTILE * * Returns the quartile of a data set. * * Excel Function: * QUARTILE(value1[,value2[, ...]],entry) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::RANK in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* RANK * * Returns the rank of a number in a list of numbers. * *
PHPExcel_Calculation_Statistical::SMALL in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* SMALL * * Returns the nth smallest value in a data set. You can use this function to * select a value based on its relative standing. * * Excel Function: * SMALL(value1[,value2[, ...]],entry) * * @access public * @category…
PHPExcel_Calculation_Statistical::TREND in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* TREND * * Returns values along a linear trend * *
PHPExcel_Calculation_Statistical::TRIMMEAN in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* TRIMMEAN * * Returns the mean of the interior of a data set. TRIMMEAN calculates the mean * taken by excluding a percentage of data points from the top and bottom tails * of a data set. * * Excel Function: * TRIMEAN(value1[,value2[,…
PHPExcel_Calculation_Statistical::VARFunc in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* VARFunc * * Estimates variance based on a sample. * * Excel Function: * VAR(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::VARP in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
* VARP * * Calculates variance based on the entire population * * Excel Function: * VARP(value1[,value2[, ...]]) * * @access public * @category Statistical Functions *
PHPExcel_Calculation_Statistical::_checkTrendArrays in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Statistical.php
PHPExcel_Calculation_TextData::CONCATENATE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/TextData.php
* CONCATENATE * *
PHPExcel_Chart_DataSeriesValues::refresh in vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php
PHPExcel_Chart_DataSeriesValues::setDataValues in vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/DataSeriesValues.php
* Set Series Data Values * *
PHPExcel_Worksheet_AutoFilter::_calculateTopTenValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Worksheet/AutoFilter.php