ResellerRatings Store Ratings - View Single Post - Need Help with Excel Formula
View Single Post
Old 10-27-2003, 11:11 AM   #6 (permalink)
DrDave1958
Registered User
 
Join Date: Oct 2003
Location: Ohio
Posts: 41
DrDave1958 is on a distinguished road
After some research.........

Put the following function in a module of the spreadsheet

Function has_comment(mycell As Object) As Boolean

If mycell.Comment.Visible = False Then
has_comment = False
Else
has_comment = True
End If
End Function


Then set the conditional format formula to

=NOT(ISERROR(has_comment(A1))) (for cell A1)



-Dave-

DrDave1958 is offline   Reply With Quote