excel怎么进行多条件统计( 二 )


With Range(“I1:N” &lngLastRow)
‘对统计区域的数据排序
.Sort _
Key1:=”场次”, Order1:=xlAscending, _
Key2:=”考场编码”, Order2:=xlAscending, _
Key3:=”试室编码”, Order3:=xlAscending, _
Header:=xlYes
‘调整列宽
.Columns.AutoFit
End With
Set myDict = Nothing
End Sub
代码中有相应的注释,可以参照理解 。

推荐阅读