* #1056 - replace invalid minif/maxif functions by not implemented minifs/maxifs minif/maxif is not support in Excel, Google Spreadsheets, Libreoffice https://support.office.com/en-us/article/excel-functions-alphabetical-b3944572-255d-4efb-bb96-c6d90033e188#bm13 * #1056 - implement minifs/maxifs Copy-pasted sumifs... https://github.com/PHPOffice/PhpSpreadsheet/blob/1.8.1/src/PhpSpreadsheet/Calculation/MathTrig.php#L1254 * #1056 - implement countifs * #1056 - fix code style composer check composer fix * #1056 - update changelog
		
			
				
	
	
		
			45 lines
		
	
	
		
			579 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			579 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
return [
 | 
						|
    [
 | 
						|
        1,
 | 
						|
        [
 | 
						|
            [1],
 | 
						|
            [2],
 | 
						|
            [3],
 | 
						|
        ],
 | 
						|
        [
 | 
						|
            ['Y'],
 | 
						|
            ['Y'],
 | 
						|
            ['N'],
 | 
						|
        ],
 | 
						|
        '=Y',
 | 
						|
        [
 | 
						|
            ['H'],
 | 
						|
            ['H'],
 | 
						|
            ['H'],
 | 
						|
        ],
 | 
						|
        '=H',
 | 
						|
    ],
 | 
						|
    [
 | 
						|
        2,
 | 
						|
        [
 | 
						|
            [1],
 | 
						|
            [2],
 | 
						|
            [3],
 | 
						|
        ],
 | 
						|
        [
 | 
						|
            ['A'],
 | 
						|
            ['B'],
 | 
						|
            ['C'],
 | 
						|
        ],
 | 
						|
        '=B',
 | 
						|
        [
 | 
						|
            ['C'],
 | 
						|
            ['B'],
 | 
						|
            ['A'],
 | 
						|
        ],
 | 
						|
        '=B',
 | 
						|
    ],
 | 
						|
];
 |