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

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
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,215,529
Messages
6,125,343
Members
449,219
Latest member
Smiqer

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