Range.HasFormula 属性 (Excel)

如果区域中所有单元格均包含公式,则该属性值为 True;如果所有单元格均不包含公式,则该属性值为 False;其他情况下为 null。 只读变体

语法

表达式HasFormula

expression 一个表示 Range 对象的变量。

示例

此示例提示用户在 Sheet1 中选择一个区域。 如果该选定区域内所有单元格均包含公式,则本示例将显示消息框。

Worksheets("Sheet1").Activate 
Set rr = Application.InputBox( _ 
 prompt:="Select a range on this worksheet", _ 
 Type:=8) 
If rr.HasFormula = True Then 
 MsgBox "Every cell in the selection contains a formula" 
End If

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。