Cell Comments

jspattavina

New Member
Joined
Dec 12, 2013
Messages
4
I want to be able to display the active cell comment in a form text box
if you change to the text box it will update the comment
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Well, a regular textbox inserted onto the sheet could do that. A form textbox only updates when you load the form or manually tell the control to update or unless you build in VBA code to update the textbox control each time the cell has changed.

Or are you wanting a Form textbox to change the cell comment (now called cell note). If so, then use these two Subs to do that
VBA Code:
Private Sub TextBox1_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean)
  Sheets("Sheet1").Range("G5").Comment.Text Text:=TextBox1.Value
End Sub


Private Sub UserForm_Initialize()
  TextBox1.Value = Sheets("Sheet1").Range("G5").Comment.Text
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,527
Messages
6,160,342
Members
451,638
Latest member
MyFlower

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