R
Rob
I want to apply a conditional format to let someone know that the formula in
a cell has been overwritten. Is there a way to do this?
a cell has been overwritten. Is there a way to do this?
Biff said:Hi!
GET.CELL() is from the old Excel macro language. That macro language has
been replaced by VBA but it's still supported.
48 is the argument index number for a formula in a cell.
In order for these macro language functions to work they have to be called
from named formulas. Thus the reason to create the named formula. Since this
has to be called from a named formula we can't use absolute cell referencing
so the need for R1C1 referencing via the Indirect function.
INDIRECT("RC"....) refers to the target cell of the conditional formatting.
=GET.CELL(48,INDIRECT("RC",FALSE))
This would return TRUE if the cell has a formula. Since your criteria is the
opposite and since CF is based on a condition of TRUE, we need to test for a
condition of FALSE, thus:
=GET.CELL(48,INDIRECT("RC",FALSE))=FALSE
Biff