ianb
Member
Hi I am sure this is a simple one for someone here.
Why is this erroring and what is the solution.
I was running just the pivottable2 and this was working fine.
Now I add another 2 and I gain an error.
Many thanks.
Why is this erroring and what is the solution.
I was running just the pivottable2 and this was working fine.
Now I add another 2 and I gain an error.
Many thanks.
Code:
Sub Dailydate()
Sheets("Dashboard (Individual)").Select
ActiveSheet.PivotTables("PivotTable2").PivotFields("Resolved Date"). _
CurrentPage = Format(Now, "dd/mm/yyyy")
Application.Goto Range("a1")
Sheets("PDF Report").Select
ActiveSheet.PivotTables("PivotTable7").PivotFields("Resolved Date"). _
CurrentPage = Format(Now, "dd/mm/yyyy")
Application.Goto Range("a1")
Sheets("PDF Report").Select
ActiveSheet.PivotTables("PivotTable8").PivotFields("Resolved Date"). _
CurrentPage = Format(Now, "dd/mm/yyyy")
Application.Goto Range("a1")
End Sub
Last edited by a moderator: