(defn get-values
"Gets a collection of values from the df by name"
[df name]
(let [cells (get-cells df name)
results (map #(-> % :value deref) cells)]
(do
(when (some #(= % *empty-value*) results)
(throwf Exception "At least one empty cell named %s found" name))
results)))
Comments top
No comments for get-values. Log in to add a comment.