I am counting calories. I don't need to save the data long term; only the sums.I'm a light user of numbers so hopefully a power user can chime in. But I'm having trouble imagining how this feature would work. A cell with formulas will present the result of the formula as the contents of the cell, right? What is a scenario where you would want to clear a cell AND have an active formula in that cell?
yeah; I saw that Excel can do that! Why doesn't Apple with its' huge balance sheet invest in Numbers?!I don't think Numbers can do that like Excel does.
Copy, move, or delete cell content in Numbers on Mac
In Numbers on Mac, copy, move, or delete data and formatting from a table cell, or delete the data but keep the formatting.support.apple.com
Correct.Ok, I think I understand. The goal is to be able to select the entire table and clear all the contents at once, but preserve the formulas so you can enter fresh data in the other cells and it will be calculated properly in the formula cells. Is that right?
tell application "Numbers" to tell front document to tell active sheet
tell (first table whose selection range's class is range)
repeat with aCell in cells of (get selection range)
tell aCell to if not (exists its formula) then set its value to missing value
end repeat
end tell
end tell