i have this code below in which i select range and then to offset to get the handle of one cell down of base_red range. The moment the next line of pastespecial is run it copies the data to range "mon" but also the cursor selection moves to "mon" range.
I don't want the selection to remain at the old place only and not able to figure out how to stop the selection at old place only. I require this because i have to do some more offset and paste the values to new locations.
If count1 = 1 Then
ws.Range("base_red").Select
End If
ActiveCell.Offset(1, 0).Select
ActiveCell.Copy
ws.Range("mon").PasteSpecial