e3fb160f5f
Conditional operators in the selection parameter of COUNTIF functions were not being parsed properly, causing evaluations of formulae with such functions to sometimes fail. Fixes #526 Closes #528
37 lines
405 B
PHP
37 lines
405 B
PHP
<?php
|
|
|
|
return [
|
|
[
|
|
'<"A"',
|
|
'<A',
|
|
],
|
|
[
|
|
'>"A"',
|
|
'>A',
|
|
],
|
|
[
|
|
'<="A"',
|
|
'<=A',
|
|
],
|
|
[
|
|
'>"A"',
|
|
'>A',
|
|
],
|
|
[
|
|
'>="A"',
|
|
'>=A',
|
|
],
|
|
[
|
|
'<>"A"',
|
|
'<>A',
|
|
],
|
|
[
|
|
'<"<A"',
|
|
'<<A',
|
|
],
|
|
[
|
|
'<>"< PLEASE SELECT >"',
|
|
'<>< Please Select >',
|
|
],
|
|
];
|