sagacity/inc/vendor/phpoffice/phpspreadsheet/tests/data/Calculation/Functions/IF_CONDITION.php

37 lines
405 B
PHP
Raw Normal View History

<?php
return [
[
'<"A"',
'<A',
],
[
'>"A"',
'>A',
],
[
'<="A"',
'<=A',
],
[
'>"A"',
'>A',
],
[
'>="A"',
'>=A',
],
[
'<>"A"',
'<>A',
],
[
'<"<A"',
'<<A',
],
[
'<>"< PLEASE SELECT >"',
'<>< Please Select >',
],
];