在Excel

时间:2015-08-17 16:12:36

标签: excel vbscript

我想使用VBScript在Excel中过滤特定列CS。这就是我到目前为止所拥有的。我基本上想要使用字符串CS过滤列statusGiven

wb.Sheets("Profile").Range("A1:DD500").AutoFilter 130, statusGiven

我认为可能有一种更简单的方法,而不是计算列数,直到CS

1 个答案:

答案 0 :(得分:2)

您可以使用Column属性返回列号:

With wb.Sheets("Profile")

    .Range("A1:DD500").AutoFilter .Columns("CS").Column, statusGiven

End With