I have text string in a cell on tab A. For example, let's say it is: "The red dog was very big."
I would like to populate a textbox on tab B with the string including the formatting of the string (the bold and color included). In my case a person would select a cell and click a button to populate the textbox on the other tab.
If I try to do something like this:
I get the text but lose the formatting. I also tried ActiveCell.Text with no luck.
How can I accomplish this?
I would like to populate a textbox on tab B with the string including the formatting of the string (the bold and color included). In my case a person would select a cell and click a button to populate the textbox on the other tab.
If I try to do something like this:
VBA Code:
Sheets("B").Shapes("TextBox 1").TextFrame.Characters.Text = ActiveCell.Value
How can I accomplish this?