 148bee1991
			
		
	
	
		148bee1991
		
			
		
	
	
	
	
		
			
			This change adds support for newer functions that are prefixed by _xlfn. (#356). The calculation engine has been updated to recognise these as functions, and drop the _xlfn. part. It also add a couple of the new functions such as STDEV.S/P, MODE.SNGL, ISFORMULA. Fixes #356 Closes #390
		
			
				
	
	
		
			60 lines
		
	
	
		
			597 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			597 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [
 | |
|         false,
 | |
|         null,
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         -1,
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         0,
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         1,
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         '',
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         '2',
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         '#VALUE!',
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         '#N/A',
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         'TRUE',
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         true,
 | |
|     ],
 | |
|     [
 | |
|         false,
 | |
|         false,
 | |
|     ],
 | |
|     [
 | |
|         true,
 | |
|         '="ABC"',
 | |
|     ],
 | |
|     [
 | |
|         true,
 | |
|         '=A1',
 | |
|     ],
 | |
|     [
 | |
|         '#REF!',
 | |
|     ],
 | |
| ];
 |