example
Sub test2()
'counts number of comments
Dim cmnts As Long
cmnts = ActiveSheet.Comments.Count
MsgBox cmnts
End Sub
When I type
activesheet.
(Notice the period at the end)
Why doesn't VBA then automatically show me the properties/methods of
Activesheet?
Bookmarks