Checks whether a reference contains a formula and returns TRUE or FALSE.
Ta funkcja działa w Arkuszach Google tak samo jak w Excelu — ta sama składnia i argumenty.
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)Wynik: TRUE
Returns TRUE if cell A1 contains a formula like =SUM(B1:B5).
=ISFORMULA(100)Wynik: 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).