PivotTable: Filter out pivotitems less than a date variable

NGonzalez

New Member
Joined
Apr 25, 2023
Messages
1
Office Version
  1. 2013
Platform
  1. Windows
Hello everyone

I have a dynamic table in which I have the day filter which comes from the =DAY() function and I want to be able to filter it from visual for days less than or equal to the present day.

I can filter the information but I get error 13 type mismatch

Sub TablaZona2()
Dim pvtItm1 As PivotItem
Dim fecha As Integer
Dim PTable1 As PivotTable



Set PTable1 = ActiveSheet.PivotTables("TablaZona1")

fecha = Day(Now)


For Each pvtItm1 In PTable1.PivotFields("DIA").PivotItems

If pvtItm1.Value < fecha Then
pvtItm1.Visible = True
Else
pvtItm1.Visible = False
End If

Next


End Sub

Could you help me, thank you
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.

Forum statistics

Threads
1,215,096
Messages
6,123,074
Members
449,093
Latest member
ripvw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top