SUM.php 302 B

123456789101112
  1. <?php
  2. return [
  3. [50, 5, 15, 30],
  4. [52, 5, 15, 30, 2],
  5. [53.1, 5.7, 15, 30, 2.4],
  6. [52.1, 5.7, '14', 30, 2.4],
  7. [38.1, 5.7, 'X', 30, 2.4], // error if entered in formula, but not in cell
  8. [38.1, 5.7, null, 30, 2.4],
  9. [38.1, 5.7, false, 30, 2.4],
  10. [39.1, 5.7, true, 30, 2.4],
  11. ];