Function StringPrepend() Dim s As String s = "bar" s = "foo" & s Debug.Print s End Function