Skip to content

Latest commit

 

History

History
47 lines (27 loc) · 1.26 KB

Excel.Range.FormulaHidden.md

File metadata and controls

47 lines (27 loc) · 1.26 KB
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Range.FormulaHidden property (Excel)
vbaxl10.chm144135
vbaxl10.chm144135
Excel.Range.FormulaHidden
b6425c86-7e20-e34e-2d96-eb16075c20b6
05/10/2019
medium

Range.FormulaHidden property (Excel)

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 B1 on Sheet1 when the worksheet is protected.

Sub HideFormulas() 
 
 Worksheets("Sheet1").Range("A1:B1").FormulaHidden = True 
 
End Sub

[!includeSupport and feedback]