I\'m going to rewrite this request. I see that I could be clearer.
From within the spreadsheet I highlight a cell where I want a standardized comment inserted. I use a k
Properly indenting the code makes it more obvious that the entirety of it in Sub CommentAddLabor
only runs if there is no comment in the selected cell.
You want:
Public Sub CommentAddLabor()
If Ct Is Nothing Then
ActiveCell.AddComment
End If
Set Ct = ActiveCell.Comment
CommentFormat 'calls the sub above
Ct.Text "Function: " & Chr(10) & "Envision: " & Chr(10) & "Activity: " & Chr(10) & "Material: " & Chr(10) & "Duration: " & Chr(10) & "Consider: "
End Sub