![]() |
Need a Error Handling for this Macro
Please help.
I have this Macro. But the problem starts when there is no data in the pivot table or no data in the data source. It will prompt a run time error 1004. Private Sub Worksheet_Activate() Me.PivotTables(1).PivotCache.Refresh Range("C1").Activate End Sub I believe there is a way to exit this sub if running this sub causes an error. Thanks. |
Need a Error Handling for this Macro
Private Sub Worksheet_Activate()
On Error Resume Next Me.PivotTables(1).PivotCache.Refresh Range("C1").Activate End Sub -- If this post helps click Yes --------------- Jacob Skaria " wrote: Please help. I have this Macro. But the problem starts when there is no data in the pivot table or no data in the data source. It will prompt a run time error 1004. Private Sub Worksheet_Activate() Me.PivotTables(1).PivotCache.Refresh Range("C1").Activate End Sub I believe there is a way to exit this sub if running this sub causes an error. Thanks. |
Need a Error Handling for this Macro
Thanks... it works.
"Jacob Skaria" wrote: Private Sub Worksheet_Activate() On Error Resume Next Me.PivotTables(1).PivotCache.Refresh Range("C1").Activate End Sub -- If this post helps click Yes --------------- Jacob Skaria " wrote: Please help. I have this Macro. But the problem starts when there is no data in the pivot table or no data in the data source. It will prompt a run time error 1004. Private Sub Worksheet_Activate() Me.PivotTables(1).PivotCache.Refresh Range("C1").Activate End Sub I believe there is a way to exit this sub if running this sub causes an error. Thanks. |
All times are GMT +1. The time now is 07:06 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com