Excel VBA add text to TextBox without overwriting existing text.

trainwater

New Member
Joined
Jan 25, 2016
Messages
4
I have a textbox on Worksheet A. The textbox name is TextboxB. I am trying to use VBA to add text to the end of the textbox without overwriting the text that is already in there. Please keep in mind these are textboxes on worksheets that are shapes, not controls.

Using the following put's the text in , but deletes all other text first.

Code:
worksheets("A").Shapes("TextBoxB").TextFrame.Characters.Text = "New Text"

This is what I want to happen

TextBox A (pre code run)
|***********************|
| This text is here |
| |
|_______________________|

TextBox A (post code run)
|***********************|
| This text is here |
| New Text |
|_______________________|
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Try assigning the textbox text to a variable, then combining the variable with the new text.

Code:
Dim myVar as String
myVar = worksheets("A").Shapes("TextBoxB").TextFrame.Characters.Text

worksheets("A").Shapes("TextBoxB").TextFrame.Characters.Text = myVar & " New Text"
 
Upvote 0
Try assigning the textbox text to a variable, then combining the variable with the new text.

Code:
Dim myVar as String
myVar = worksheets("A").Shapes("TextBoxB").TextFrame.Characters.Text

worksheets("A").Shapes("TextBoxB").TextFrame.Characters.Text = myVar & " New Text"


This worked perfectly! Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,224,828
Messages
6,181,209
Members
453,022
Latest member
RobertV1609

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