计算单元格是否等于另一个范围内的值,右边的单元格等于TRUE

时间:2018-01-14 02:29:26

标签: excel excel-formula

如果作业在表2中列为要计数的作业(即作业F和G),我如何计算John在表1中完成的所有作业(由字母表示)。因此,对于约翰而言,总数应为22 * F),对于彼得,它也应为21*G and 1*F)。

Excel Screenshot

1 个答案:

答案 0 :(得分:0)

作为CSE的数组公式。

(defn nth-fibo [i]
  (cond
    (= i 1) 1
    (= i 2) 1
    :else (+ (nth-fibo (- i 1)) (nth-fibo (- i 2)))))

(defn fibos [i]
  (loop [x i]
    (when (> x 0)
      (cons (nth-fibo x) (fibos (- x 1))))))

(reverse (fibos 5))

enter image description here