addComments

  • Thread starter Thread starter Guest
  • Start date Start date
I bet you could.

But wouldn't it be better to just add another textbox to the userform that could
be used for comments.
 
Use inputbox() to retrieve a comment and then use that to populate the cell.

dim myStr as string
....

mystr = inputbox(Prompt:="Enter a comment")
....

Then use that mystr variable to fill in the cell that you want.
 
Back
Top