You Could try this
Without some data to work with it isn't clear what you expecting as a result![]()
Sub FindNum() Dim LastRow As String Dim Cell As Range LastRow = Range("K" & Rows.Count).End(xlUp).Row For Each Cell In ActiveSheet.Range("K6:K" & LastRow) If Left(Cell, 3) = "EGL" Then Cell = Cell & "&" & Cell.Offset(0, 1) End If Next End Sub
Hope this helps
Remember the Code Tags in Post #1
Bookmarks