ORDENAR COLUNAS DO EXCEL PELO VB6

MAURICIO 21/03/2013 10:46:33
#420853
Estou gerando uma tabela e preciso ordenar uma coluna do excel pelo vb6.

Já tentei:

oExcel.Columns([Ô]C:C[Ô]).Select
Selection.Sort Key1:=Range([Ô]C2[Ô]), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom

e não deu certo.

preciso muito disso.
RO.DRIGOSG 20/01/2014 15:11:50
#433277
MAURICIO,

Se vc ainda não resolveu, tenta assim:

 Range([Ô]A1:c5[Ô]).Select
Selection.Sort Key1:=Range([Ô]B2[Ô]), Order1:=xlDescending, Key2:=Range([Ô]C2[Ô]) _
, Order2:=xlDescending, Header:=xlGuess, OrderCustom:=1, MatchCase:= _
False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, DataOption2 _
:=xlSortNormal
Faça seu login para responder