Range("C1").Select'選擇C1單元格
Selection.AutoFill?Destination:=Range("C1:C20000")'C1:C20000區域自動填充
Range("C1:C4").Select'選擇C1:C4,此句可省
Columns("A:C").Select'選擇A:C列,此句可省
ActiveSheet.Sort.SortFields.Clear'清空排序集合
ActiveSheet.Sort.SortFields.Add?Key:=Range("B:B"),?_
SortOn:=xlSortOnValues,?Order:=xlAscending,?DataOption:=xlSortNormal'B列升序
ActiveSheet.Sort.SortFields.Add?Key:=Range("C:C"),?_
SortOn:=xlSortOnValues,?Order:=xlAscending,?DataOption:=xlSortNormal'再C列升序
With?ActiveSheet.Sort'排序
.SetRange?Range("A:C")'區域A:C列
.Header?=?xlGuess'包含標題
.MatchCase?=?False'不區分大小寫
.Orientation?=?xlTopToBottom’指定為升序
.SortMethod?=?xlPinYin'按拼音排序
.Apply
End?With