Hi,
I am just starting to learn vba and need some help on this.
I have written the code below, to copy the txt in colum h to the same row in column J, and then clear the original cell.
Range("j69") = Range("H69").Value
Range("H69").Select
Selection.ClearContents
what i dont know how do is to repeat the loop (probably something very simple), on the next row, and the row after
and to select the rows that i need to do this. eg rows 50:70, miss out rows 71:75, repeat on rows 76:96, miss rows 97:101 and so on. (may not be so simple)
anybody help???
I am just starting to learn vba and need some help on this.
I have written the code below, to copy the txt in colum h to the same row in column J, and then clear the original cell.
Range("j69") = Range("H69").Value
Range("H69").Select
Selection.ClearContents
what i dont know how do is to repeat the loop (probably something very simple), on the next row, and the row after
and to select the rows that i need to do this. eg rows 50:70, miss out rows 71:75, repeat on rows 76:96, miss rows 97:101 and so on. (may not be so simple)
anybody help???