In cells with formulas containing conditions like `=IFSUM(A1:A3;"";B1:B3)` to sum cells from range A1:A3 with empty value in range B1:B3, the function `Functions::ifCondition()` create in this case the code `=""""` instead of `=""`, so it didn't work. Closes #1206
		
			
				
	
	
		
			45 lines
		
	
	
		
			490 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			490 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
|     [
 | |
|         '<"A"',
 | |
|         '<A',
 | |
|     ],
 | |
|     [
 | |
|         '>"A"',
 | |
|         '>A',
 | |
|     ],
 | |
|     [
 | |
|         '<="A"',
 | |
|         '<=A',
 | |
|     ],
 | |
|     [
 | |
|         '>"A"',
 | |
|         '>A',
 | |
|     ],
 | |
|     [
 | |
|         '>="A"',
 | |
|         '>=A',
 | |
|     ],
 | |
|     [
 | |
|         '<>"A"',
 | |
|         '<>A',
 | |
|     ],
 | |
|     [
 | |
|         '<"<A"',
 | |
|         '<<A',
 | |
|     ],
 | |
|     [
 | |
|         '<>"< PLEASE SELECT >"',
 | |
|         '<>< Please Select >',
 | |
|     ],
 | |
|     [
 | |
|         '<>""',
 | |
|         '<>',
 | |
|     ],
 | |
|     [
 | |
|         '=""',
 | |
|         '""',
 | |
|     ],
 | |
| ];
 |