Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am writing following lines of code in the click event of the button which is on Sheet2. But this gives me Object Defined or Application Defined error. If I remove Worksheets("Sheet1") then it will work correctly but it selects Sheet2's range. I want the range from Sheet1.

So please help me with this.

Worksheets("Sheet1").Range(Cells(2, 1), Cells(lastrow, 5)).Sort _
Key1:=Range("E2"), Order1:=xlDescending
share|improve this question

1 Answer

That is because your Cells are not fully defined.

Try this

With Worksheets("Sheet1")
    .Range(.Cells(2, 1), .Cells(lastrow, 5)).Sort _
    Key1:=.Range("E2"), Order1:=xlDescending
End With
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.