Skip to main content

Range.FormulaHidden property

Table of contents
  1. Syntax
  2. Remarks
  3. Example

Returns or sets a Variant value that indicates if the formula will be hidden when the worksheet is protected.

Syntax

expression.FormulaHidden

expression A variable that represents a Range object.

Remarks

This property returns True if the formula will be hidden when the worksheet is protected, Null if the specified range contains some cells with FormulaHidden equal to True and some cells with FormulaHidden equal to False.

Don't confuse this property with the Hidden property. The formula will not be hidden if the workbook is protected and the worksheet is not, but only if the worksheet is protected.

Example

This example hides the formulas in cells A1 and D1 on Sheet1 when the worksheet is protected.

Worksheets("Sheet1").Range("A1:D1").FormulaHidden = True
Worksheets("Sheet1").Protect

Leave a comment

Your email address will not be published. Required fields are marked *

Format your code: <pre><code class="language-vba">place your code here</code></pre>