What I'm trying to do is colour / fill a cell with a colour if that cell has a comment.
I'm taking inspiration from this post here:
<I'm not allowed to post links until I post few times>
What I'm trying is insert this code into vba
![]()
Function IsComm(CellComm As Range) As Boolean Application.Volatile IsComm = False If Not CellComm.Comment Is Nothing Then IsComm = True End Function
So what I've done is:
- hit ALT+F11
- right-click in the VBA project window
- click insert module
- copy and paste the code above
- and then click save and save the excel worksheet with macros enabled
I then add conditional formating logic by:
- clicking home
- clicking conditional formating
- clicking new rule
- use formula to determine which cells to format
- type exactly this "=IsComm(A1)" without quotes in the "format value where this formula is true" box.
- select the colour green from the format button and fill tab.
below are some pictures of me suffering:
Bookmarks