ORDENAR COLUNAS DO EXCEL PELO VB6
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.
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.
MAURICIO,
Se vc ainda não resolveu, tenta assim:
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