Range Code Fails reading Comment text

AlexanderBB

Well-known Member
Joined
Jul 1, 2009
Messages
1,835
Office Version
  1. 2019
  2. 2016
Platform
  1. Windows
Just wondering why this goes to error 91 "object or with block not set"

Code:
Dim MyRange as Range
Dim a 
Set MyRange = Application.Range("Sheet1!A2:G2")
a= MyRange(1).comment.text
' Set a= MyRange(1).comment.text
Both 'a=' lines result in the same error 91

Thanks.
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
It's because the cell has no comments.

Try this:

Code:
Sub testcom()
  Dim MyRange As Range
  Dim a
  Set MyRange = Application.Range("Sheet1!A2:G2")
  If MyRange(1).Comment Is Nothing Then
    MsgBox "The cell has no comments"
  Else
    a = MyRange(1).Comment.Text
  End If
End Sub
 
Upvote 0
Aaw shucks! I had struck this before, but forgotten.
The error description threw me.. many thanks.
 
Upvote 0
Im glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,643
Messages
6,120,707
Members
448,981
Latest member
recon11bucks

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top