You are here

public static function PHPExcel_Calculation_Functions::isCellValue in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php \PHPExcel_Calculation_Functions::isCellValue()
7 calls to PHPExcel_Calculation_Functions::isCellValue()
PHPExcel_Calculation_Functions::TYPE in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php
* TYPE * * Returns a number that identifies the type of a value * *
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::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 *

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Functions.php, line 304

Class

PHPExcel_Calculation_Functions
PHPExcel_Calculation_Functions

Code

public static function isCellValue($idx) {
  return substr_count($idx, '.') > 1;
}