A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I have some unicode characters in a cell. Is there any easy way to have a macro get the cell contents and display the material in some kind of textbox or other userform in the same font as it appears in the cell?
A MsgBox doesn't do it.
A user form with a label and the following code will display the content of the active cell when the user form is activated.
Private Sub UserForm_Activate()
Label1.Caption = ActiveCell.Value
Label1.Font.Name = ActiveCell.Font.Name
End Sub
Hope this helps / Lars-Åke