我有一个搜索框 (K1),它将搜索切片器项目并显示适当的图表,但是,如果用户选择使用切片器显示特定图表,K1 中的值将与切片器项目不匹配。
它们唯一匹配的时间是用户使用搜索框的时候。我在单元格 O1 中创建了一个公式,它返回 1(如果它们匹配)或返回 0(如果它们不匹配),然后尝试使 K1 = 项目值的不同变体(代码的引用部分)。
请参阅我的仪表板图像链接以供参考。
我对 VBA 很陌生,所以任何 ELI5 答案都将不胜感激。
Sub SearchPivots()
Application.ScreenUpdating = False
Application.DisplayStatusBar = False
Application.Calculation = xlCalculationManual
'Set the Variables to be used
Dim pt As PivotTable
Dim Field As PivotField
Dim NewCat As String
On Error GoTo 28
'Find Pivot Table
Set pt = Worksheets("Overall Pivot").PivotTables("NAMERPM")
Set Field = pt.PivotFields("Filter Field")
NewCat = Worksheets("Resource Dashboard").Range("K1").Value
Application.Calculation = xlCalculationAutomatic
'This updates and refreshes the PIVOT table
With pt
Field.ClearAllFilters
Field.CurrentPage = NewCat
pt.RefreshTable
End With
'With Field
' If Range("O1").Value = 0 Then
' Range("K1") = Field.CurrentPage.Value
' End If
'End With
Exit Sub
28:
MsgBox "That project number is not listed. Please check the project number and try again."
Application.ScreenUpdating = True
Application.DisplayStatusBar = True
End Sub