When I use Excel it allows me to set specific words within a cell to bold or italic or even change the text size.
Is there a way of doing this
I believe the answer could be found here: excel vba: make part of string bold
Specifically,
ActiveCell.FormulaR1C1 = "name/A/date" & Chr(10) & "name/B/date" & Chr(10) & "name/C/date" With ActiveCell.Characters(Start:=25, Length:=4).Font .FontStyle = "Bold" End With