I'm looking to be able to check a range to ensure that all the cells in it have a formula; this would let me know if any cells in the column have been altered to static data. In other words, if any single cell in the range is NOT a formula, it should return FALSE.
I tried:
=ARRAYFORMULA(ISFORMULA(A1:A6))
but that still only checks the value in A1. Does anybody know how I could do this?