When the code inserts the data I need it to read like a paragraph. At present the data runs outside the printable page limits and disappears. I want it to find the range edge (column p) and restart at the next row, beginning again at Column K
If InStr(TextBox2.Value, " 5 ") Then
Dim lastRow As Long
lastRow = wsGroup.Cells(wsGroup.Rows.Count, "K").End(xlUp).Row + 1 ' Find the last row in column K
wsGroup.Range("K" & lastRow + 1).Value = wsSheet3.Range("G5").Value
End If
As you can see (hopefully) the data runs outside the field (columns k to p)
I'm not sure what to try next, any help, feedback or ideas appreciated
Cheers, Cmack