I'm wondering when a user makes their selection via option button in a user form, is it possible to have it populate text that has multiple formatting properties (need a bullet & bold font). For example, I would like the end result from the user's selection to be appear as follows:
Private Sub cmdOK_Click()
Dim Direction As String
If East = True Then Direction = "formatted text here"
If West = True Then Direction = "formatted text here"
Hopefully that makes sense. Not sure this is possible, but I've been surprised before.
- HEADING: I need my result to populate as it appears here with the bullet and the heading title in bold font.
Private Sub cmdOK_Click()
Dim Direction As String
If East = True Then Direction = "formatted text here"
If West = True Then Direction = "formatted text here"
Hopefully that makes sense. Not sure this is possible, but I've been surprised before.