Using VBA, how would I write the code to insert multiple lines of text into a cell and specify the fontsize of each line...
Thanks for any help,
David
Code:
Item1$ = "FontSize 18" 'I want this to display on the worksheet in FontSize 18
Item2$ = "FontSize 20" 'I want this to display on the worksheet in FontSize 20
Item3$ = "FountSize 22" 'I want this to display on the worksheet in FontSize 22
Range("DifferentFonts").Value = Item1$ & Chr$(10) & Item2$ & Chr$(10) & Item3$ & Chr$(10)
Thanks for any help,
David