我需要提交一个动态表(大约200行/ 4列)。我想用一个InputBox以范围的形式输入过滤条件。
我需要一个按钮,抛出一个InputBox,询问用户“输入一系列序列号”(例如“7-9”和“15-25”),然后过滤表。(“序列号”是一个表的列。
答案 0 :(得分:0)
可能是的,宏记录器将能够为您完成大部分操作。启动录像机,选择您的数据,使用自定义过滤器对id列应用自动过滤器,该过滤器允许> =和< =一个值。然后停止录音机。
然后您需要进入VBA编辑器并修改宏以获取变量输入。
示例:
宏观输出
Sub Macro1()
'
' Macro1 Macro
'
Columns("A:C").Select
Selection.AutoFilter
ActiveSheet.Range("$A$1:$A$53").AutoFilter Field:=1, Criteria1:=">=5", Operator:=xlAnd, Criteria2:="<=10"
End Sub
修改后的宏
Public Sub Macro1m()
Dim A As String
Dim B() As String
Dim Lv As Integer
Dim Hv As Integer
Dim Sv As Integer
A = InputBox("Enter Criteria: ( [low]-[high] )") ' take your input from the user
B = Split(A, "-") ' split the result to get the high and low values
Lv = CInt(B(0)) ' convert the strings to integers
Hv = CInt(B(1)) '
If Lv > Hv Then ' ensure that the high value is > than low value, swapping if needed
Sv = Hv
Hv = Lv
Lv = Sv
End If
Columns("A:C").Select ' original macro code
Selection.AutoFilter
ActiveSheet.Range("$A$1:$A$53").AutoFilter Field:=1, Criteria1:=">=" & Lv, Operator:=xlAnd, Criteria2:="<=" & Hv ' macro code modified to use high and low value instead of the constant 5 and 10 entered in the auto-filter configuration
End Sub