still having a minor issue here - this is the amended code however the cells with data (ie not empty) that should be copying to columns O and Q are not appearing - ie O/Q seem to be blanking themselves with each iteration
Sub rangePaste()
Dim count
For count = 4 To 65
If IsNumeric(Range("I" & count)) Then
Range("I" & count).Copy Range("O" & count)
End If
If IsNumeric(Range("K" & count)) Then
Range("K" & count).Copy Range("Q" & count)
End If
Next
If Now < "9:19:59" Then
Call copyPrices
Else: Exit Sub
End If
End Sub
could somebody pls point me in the right direction? cheers
Bookmarks