Sub CombineAndCopyDown()
Dim Info As Worksheet, Submit As Worksheet, LastRow As Long
Set Info = Worksheets("Info for Script")
Set Submit = Worksheets("New Submission")
LastRow = Submit.Cells(Rows.Count, "A").End(xlUp).Row
Submit.Range("B1").Value = "=""" & Info.Range("A1").Value & " ""&" & Mid(Submit.Range("B1").Formula, 2)
Submit.Range("B1:B" & LastRow).Value = Submit.Range("B1").Formula
End Sub
I wish i was able to just do screen shots, it would make everything alot easier.