我想创建一个按钮,该按钮应按给定条件填充数据:
假设我有一个包含3列的表
column1 column2 column3
a 3
b 4
b 3
a 4
b 4
按钮应仅显示带有" b"的数据。 column1和" 4"中的值在第2栏。此外,它应该把价值"是"在第3栏中,如果它满足上述条件。
答案 0 :(得分:0)
如果不是b或4,则不确定是否要删除第1列和第2列中的值。
Private Sub CommandButton1_Click()
For i = 2 To 6 'Give the range as per your requirement
If Cells(i, 1) = "b" And Cells(i, 2) = 4 Then
Cells(i, 3).Value = "Yes"
End If
Next
End Sub