Excel排序vba代码
Posted wzshhynk
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Excel排序vba代码相关的知识,希望对你有一定的参考价值。
Sub paixu()
Range("A3:p26").Select
Selection.Sort Key1:=Range("F7"), Order1:=xlAscending, Key2:=Range("G7") _
, Order2:=xlAscending, Key3:=Range("C3"), Order3:=xlAscending, Header:= _
xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
SortMethod:=xlPinYin, DataOption1:=xlSortNormal, DataOption2:= _
xlSortNormal, DataOption3:=xlSortNormal
End Sub
以上是关于Excel排序vba代码的主要内容,如果未能解决你的问题,请参考以下文章