So I have the above code, I want to continue on this logic: if K4 is not empty then copy L3 to L4 and so on, until one cell is empty (for example K32 is not empty then copy L31 to L32, but if K33 is empty then stop) Im sorry if this is a basic question, I have just started working with VBA. Thank you in advance
Sub kepletmasolos()
Sheets("XTR MSTR").Select
If IsEmpty(Range("K3").Value) = False Then
Range("L2").Copy Range("L3")
End If
End Sub