showFormulas

hides or shows formulas inside cells

void showFormulas(boolean|string state, [string page] );
stateboolean|stringtrue - to show formulas, false - to hide, “toggle” - the opposite of the current state
pagestringoptional, the name of the sheet. If not specified, the method is applied to the current sheet

Example

$$("ssheet").showFormulas(true, "Sheet1");

Back to top