addComments

D

Dave Peterson

I bet you could.

But wouldn't it be better to just add another textbox to the userform that could
be used for comments.
 
D

Dave Peterson

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top