Comments on userform to be applied to worksheet

ipbr21054

Well-known Member
Joined
Nov 16, 2010
Messages
5,226
Office Version
  1. 2007
Platform
  1. Windows
Morning,
I have a userform which data is entered then sent to my worksheet.
I am then having to manually insert a comment into the cell at column D

How is it possible to wright on my userfrom & that comment is inserted into thats cell at column D
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
amend sheet name, textbox name, variable used to determine row number etc
VBA Code:
    With Sheets("Sheet1").Cells(RowNumber, 4)
        .Comment.Delete
        .AddComment
        .Comment.Text Text:=Me.Textbox10.Text
    End With
 
Upvote 0
Before i do that let me say it anyway just incase i didnt explain correct the first time.

My userform info is sent to the worksheet.
Now i then go to cell column D and wright NOTE
Once NOTE is shown in the cell i then right click & insert comment.
So my worksheet cell shows NOTE with a red marker in the top right corener of that cell.

I dont want to wright on the userform in a text box, This textbox text sahould be this long
So when i look at my worksheet it shows in cell D, This textbox text sahould be this long

Worksheet should just show NOTE with, This textbox text sahould be this long behind it like hidden
 
Upvote 0
See photo example


Cell D1269 has the word NOTE
Put your mouse over the word NOTE to see the comment.

It is this comment i wish to type on my userform to be inserted on my worksheet.

I dont want to see all the comment writtem in cell D

Did i explain ok ??
 

Attachments

  • 407.jpg
    407.jpg
    78.1 KB · Views: 8
Upvote 0
You said
How is it possible to wright on my userform & that comment is inserted into thats cell at column D

That is what my code does - but that does not appear to be what you want
But I do not understand what you want :unsure:
 
Upvote 0
On the worksheet do this.
Click a cell & right click then select INSERT COMMENT
Type your comment Example HELLO
When you then leave the cell you will see a red marker in the cell advising you there is a comment.

When you then hover mouse over the cell with that red market the comment is shown.
 
Upvote 0
I hope someone else understands what you want
I am leaving the thread
 
Upvote 0
What do you not understand ?

I do not wish to right click on worksheet then insert comment.

I would like whilst userform is open to wright comment then when its sent to worksheet have it already applied with red marker like in my video
 
Upvote 0

Forum statistics

Threads
1,215,338
Messages
6,124,360
Members
449,155
Latest member
ravioli44

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top