I have a working macro that does this, but I am looking for a loop code that can simplify this for me. The text/variables I have in a named range but I am unsure of how to implement that into the code. In this portion, Highlander would change to other names that I have in said range.
Sub EnterSheet()
Range("B1").Select
With ActiveCell
.Value = "Highlander" & .Value
With .Characters(1, 8).Font
Call Copy
Sheets("Overview").Select
Range("B1").Clear
End With
End With
End Sub