Hey guys... I have two integers, i and j. They define the area of a selection as below... I need to sort the data, but I get an error, here is the code I am using:

ActiveSheet.RANGE(Cells(9, 1), Cells(j, i)).Select
Selection.Sort Key1:=ActiveSheet.RANGE(Cells(9, i)), Order1:=xlDescending, Key2:=ActiveSheet.RANGE(Cells(9, 2)), Order2:=xlAscending, Header:=xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, DataOption2:=xlSortNormal
And the error I get is...

"Run-time error '1004': Application defined or object-defined error"

Any ideas?