Checks whether a reference contains a formula and returns TRUE or FALSE.
Bu işlev, Google E-Tablolar'da Excel'deki gibi çalışır — aynı söz dizimi ve bağımsız değişkenler.
ISFORMULA(reference)The ISFORMULA function determines if a cell contains a formula. It returns TRUE if the cell contains a formula, and FALSE if it contains a static value or is empty.
=ISFORMULA(A1)Sonuç: TRUE
Returns TRUE if cell A1 contains a formula like =SUM(B1:B5).
=ISFORMULA(100)Sonuç: FALSE
Returns FALSE because 100 is a static number, not a formula.
Yes, you can reference cells in other sheets using the syntax =ISFORMULA(Sheet2!A1).