Another way
Code:Sub PrepareJ() Dim lng As Long lng = Cells(Rows.Count, "B").End(xlUp).Row Range("J7:J" & lng).Value = Evaluate("=B7:B" & lng & "&E7:E" & lng) End Sub
Another way
Code:Sub PrepareJ() Dim lng As Long lng = Cells(Rows.Count, "B").End(xlUp).Row Range("J7:J" & lng).Value = Evaluate("=B7:B" & lng & "&E7:E" & lng) End Sub
A dream is not something you see when you are asleep, but something you strive for when you are awake.
It's usually a bad idea to say that something can't be done.
The difference between dream and aim, is that one requires soundless sleep to see and the other requires sleepless efforts to achieve
Join us at Facebook
I also noticed that this code will calculate the whole workbook, can I make it only work on one sheet. even the automatic one would need the same setup if possible.
Bookmarks