• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

to change the selection one row down

hanim554

Member
Dear friends,

i have below code, after the selection i want selection come down for one row, could any please tell me where to change the code
Code:
Sub TEST()
 
    Range("B25000:I25000").Select
    Range(Selection, Selection.End(xlUp)).Select
  ''' here i want the selection one row to come down
    Selection.ClearContents
   
End Sub

Regards
Hanim
 
Trying to save headers from deletion?
Code:
Sub TEST2()
Range(Range("B25000:I25000"), Range("B25000:I25000").End(xlUp)).Offset(1, 0).ClearContents
End Sub
 
Back
Top