I made this code to delete and move the fields to the correct places. How can i make it that if i add more info the lines that were done should be skipped?
Range(Range("B2"),Range("B2").End(xldown)).Select
Selection.Cut
Columns("H:H").Select
ActiveSheet.Paste
Range(Range("C2"),Range("C2").End(xldown)).Select
Selection.Cut
Range(Range("B2"),Range("B2").End(xldown)).Select
ActiveSheet.Paste
Columns("C:F").Select
Range(Range("C2:F2"),Range("C2:F2").End(xldown)).Select
Selection.Delete Shift:=xlToLeft
Columns("B:B").Select
Selection.NumberFormat = "0"
End Sub