I have two tables - one with raw data - the other is a pivot table. I need to be able to link the values, sometimes multiple values of the Data Table and the Pivot Table. Both have slicers and those slicers need to match.
However, slicers are explicit in defining which values are True or False - I was hoping to use the filter function instead. Something like this:
Worksheets("Opportunity Details").ListObjects("RawData").Range.AutoFilter Field:=9, Criteria1:= _
Worksheets("PIVOTDATE").PivotTables("OppPivot2").PivotFields("Record Manager").Range
Obviously this syntax doesn't work - I'm hoping there's some easy way to just set one equal to the other though.