I am brand new to VBA. I am seeking an efficient way to combine B and column C into 3rd column A for all populated rows via a macro. The sheet and code I have is as follows:
Sub Macro1()
Worksheets("Sheet1").Range("A1").EntireColumn.Insert
ActiveSheet.Range("A2").Value = "=D2&E2"
ActiveSheet.Range("A3").Value = "=D3&E3"
ActiveSheet.Range("A4").Value = "=D4&E4"
End Sub
I know the code above will technically work, but what about if I have 1000+ lines of data? There's got to be a more efficient way to do this? Thank you so much for any help.