Append text to a cell keeping text formatting

d365b

New Member
Joined
Dec 26, 2021
Messages
17
Office Version
  1. 365
Platform
  1. Windows
Hi everyone!

I hope you are well. Is there a way to append text from a TextBox on a UserForm to a cell without losing the cell text formatting? Please see sample workbook attached :)

TextBoxSample
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
You have to reformat the output value according the starting string, thus you have first to read and save the initial formatting of the characters and then reuse those parametres to format the output.
For example the following Sub CommandButton1_Click will work on the "activecell", save its formats, modify the cell, reformat it:
VBA Code:
Private Sub CommandButton1_Click()
Dim BaseR As Range, fArr(), I As Long, OffLen As Long
'
Set BaseR = ActiveCell
ReDim fArr(1 To Len(BaseR.Value), 1 To 2)     '<<Increase size to store more formatting elements
For I = 1 To Len(BaseR)
    fArr(I, 1) = BaseR.Characters(I, 1).Font.Color
    fArr(I, 2) = BaseR.Characters(I, 1).Font.Bold
Next I
'
BaseR.Value = "******* " & Format(Date, "dd/mm/yy", 2, 3) & " *******" & _
   vbLf & TextBox1.Value & vbLf & "******* OLD TEXT *******" & _
   vbLf & ActiveSheet.Range("J10").Value
OffLen = Len(BaseR.Value) - UBound(fArr)
'Final reformatting:
For I = 1 To UBound(fArr)
    BaseR.Characters(OffLen + I, 1).Font.Color = fArr(I, 1)
    BaseR.Characters(OffLen + I, 1).Font.Bold = fArr(I, 2)
Next I
    Unload Me
End Sub
Be aware that I saved only Color and Bold, but formatting includes much more options; if you wish to consider more options then you have to increase the "width" fo fArr (see instruction marked <<) the save each of them into fArr. And then you have to extend the "final reformatting" phase to restore each of the parametre

Of course you need to adapt the concept to your "append text" approach
Bye
 
Upvote 0
You have to reformat the output value according the starting string, thus you have first to read and save the initial formatting of the characters and then reuse those parametres to format the output.
For example the following Sub CommandButton1_Click will work on the "activecell", save its formats, modify the cell, reformat it:
VBA Code:
Private Sub CommandButton1_Click()
Dim BaseR As Range, fArr(), I As Long, OffLen As Long
'
Set BaseR = ActiveCell
ReDim fArr(1 To Len(BaseR.Value), 1 To 2)     '<<Increase size to store more formatting elements
For I = 1 To Len(BaseR)
    fArr(I, 1) = BaseR.Characters(I, 1).Font.Color
    fArr(I, 2) = BaseR.Characters(I, 1).Font.Bold
Next I
'
BaseR.Value = "******* " & Format(Date, "dd/mm/yy", 2, 3) & " *******" & _
   vbLf & TextBox1.Value & vbLf & "******* OLD TEXT *******" & _
   vbLf & ActiveSheet.Range("J10").Value
OffLen = Len(BaseR.Value) - UBound(fArr)
'Final reformatting:
For I = 1 To UBound(fArr)
    BaseR.Characters(OffLen + I, 1).Font.Color = fArr(I, 1)
    BaseR.Characters(OffLen + I, 1).Font.Bold = fArr(I, 2)
Next I
    Unload Me
End Sub
Be aware that I saved only Color and Bold, but formatting includes much more options; if you wish to consider more options then you have to increase the "width" fo fArr (see instruction marked <<) the save each of them into fArr. And then you have to extend the "final reformatting" phase to restore each of the parametre

Of course you need to adapt the concept to your "append text" approach
Bye
Brilliant Anthony! I guess I cannot apply this approach if I wish to display the “OLD TEXT” (whatever is in the ActiveCell) in the TextBox as displayed on the sheet, am I right?
 
Upvote 0
Userfor textbox don't support text formatting.
You could go through a process of creating an image of the cell, display the image in an Image control, edit via the TextBox as now; but is it justified?

Bye
 
Upvote 0
Userfor textbox don't support text formatting.
You could go through a process of creating an image of the cell, display the image in an Image control, edit via the TextBox as now; but is it justified?

Bye
Not really, too much effort. Many thanks though for your tips ;)
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,332
Members
449,077
Latest member
jmsotelo

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