如何用VBA获取EXCEL单元格的属性
2个回答
展开全部
单元格的属性包括很多,包括地址、是否含有批注、是否含有合并单元格等。
如下代码分别求得其地址和做批注、合并单元格的判断。
Sub myText()
MsgBox "地址是" & Cells(1, 1).Address
If Cells(1, 1).Comment Is Nothing Then
MsgBox "无批注"
Else
MsgBox "有批注"
End If
Dim myrange As Range
Set myrange = Cells(1, 1)
If myrange.MergeCells Then
MsgBox "有合并单元格"
Else
MsgBox "无合并单元格"
End If
End Sub
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询