• Skip to main content
  • Skip to header right navigation
  • Skip to site footer

My Online Training Hub

Learn Dashboards, Excel, Power BI, Power Query, Power Pivot

  • Courses
  • Pricing
    • Free Courses
    • Power BI Course
    • Excel Power Query Course
    • Power Pivot and DAX Course
    • Excel Dashboard Course
    • Excel PivotTable Course – Quick Start
    • Advanced Excel Formulas Course
    • Excel Expert Advanced Excel Training
    • Excel Tables Course
    • Excel, Word, Outlook
    • Financial Modelling Course
    • Excel PivotTable Course
    • Excel for Customer Service Professionals
    • Excel for Operations Management Course
    • Excel for Decision Making Under Uncertainty Course
    • Excel for Finance Course
    • Excel Analysis ToolPak Course
    • Multi-User Pricing
  • Resources
    • Free Downloads
    • Excel Functions Explained
    • Excel Formulas
    • Excel Add-ins
    • IF Function
      • Excel IF Statement Explained
      • Excel IF AND OR Functions
      • IF Formula Builder
    • Time & Dates in Excel
      • Excel Date & Time
      • Calculating Time in Excel
      • Excel Time Calculation Tricks
      • Excel Date and Time Formatting
    • Excel Keyboard Shortcuts
    • Excel Custom Number Format Guide
    • Pivot Tables Guide
    • VLOOKUP Guide
    • ALT Codes
    • Excel VBA & Macros
    • Excel User Forms
    • VBA String Functions
  • Members
    • Login
  • Blog
  • Excel Webinars
  • Excel Forum
    • Register as Forum Member
  • Login

Only run macro if pivot table contains data|VBA & Macros|Excel Forum|My Online Training Hub

You are here: Home / Only run macro if pivot table contains data|VBA & Macros|Excel Forum|My Online Training Hub
Avatar
sp_LogInOut Log In sp_Registration Register
sp_Search Search
Advanced Search
Search
Forum Scope




Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
sp_Search Search
sp_RankInfo
Lost password?
sp_CrumbsHome HomeExcel ForumVBA & MacrosOnly run macro if pivot table conta…
sp_PrintTopic sp_TopicIcon
Only run macro if pivot table contains data
Avatar
Andy White
Member
Members

Dashboards

Power Query
Level 0
Forum Posts: 11
Member Since:
October 28, 2021
sp_UserOfflineSmall Offline
1
January 9, 2022 - 7:37 pm
sp_Permalink sp_Print

Good Morning All,

I have a piece of vba code that updates a chart layout if a pivot table is updated. (see below)

I have x 2 slicers and a graph on x1 worksheet (Prod Dashboard)  &  Pivot Table on another worksheet (Prod Hub) linked to slicers.

Slicers are called Section (Slicer_Section2) & Facility (Slicer_Facility1)

My error occurs when the user is filtering a facility and then selects a section on the slicer that doesn't contain that facility and subsequently runs the macro to change the chart layout which display the error 'parameter not found'.

Fix?  Is it possible to have coding to only run the macro if the pivot table is populated with some data?

--------------------------------

My code  Located on Prod Hub worksheet with pivot table.

Private Sub Worksheet_PivotTableUpdate(ByVal Target As PivotTable)

If Target.Name = "PivotTable1" Then
Sheets("Prod Dashboard").Activate
Application.Run "'hub.xlsm'!Test2"

End If

End Sub

--------------------------------------

My Macro

' Test2 Macro - Strikethrough line is highlighted yellow when debug selected.  I believe this is due to it attempting to change chart layout with no data.
'

ActiveSheet.ChartObjects("Chart 10").Activate
ActiveSheet.ChartObjects("Chart 10").Activate
ActiveChart.ChartType = xlColumnClustered
ActiveChart.FullSeriesCollection(1).ChartType = xlColumnClustered
ActiveChart.FullSeriesCollection(1).AxisGroup = 1
ActiveChart.FullSeriesCollection(2).ChartType = xlColumnClustered
ActiveChart.FullSeriesCollection(2).AxisGroup = 1
ActiveChart.FullSeriesCollection(3).ChartType = xlLine
ActiveChart.FullSeriesCollection(3).AxisGroup = 1
ActiveChart.FullSeriesCollection(1).ChartType = xlLine
ActiveChart.FullSeriesCollection(2).ChartType = xlLine
ActiveChart.FullSeriesCollection(3).ChartType = xlColumnClustered
Range("G18").Select
End Sub

 

Any help greatly appreciated.

Andy

Avatar
Velouria
London or thereabouts
Moderator
Members


Trusted Members

Moderators
Level 4
Forum Posts: 689
Member Since:
November 1, 2018
sp_UserOfflineSmall Offline
2
January 10, 2022 - 7:42 pm
sp_Permalink sp_Print

For a situation like this, it's probably simplest to just suppress the errors using something like:

On Error Resume Next

With ActiveSheet.ChartObjects("Chart 10").Chart
   .ChartType = xlColumnClustered
   .FullSeriesCollection(1).ChartType = xlColumnClustered
   .FullSeriesCollection(1).AxisGroup = 1
   .FullSeriesCollection(2).ChartType = xlColumnClustered
   .FullSeriesCollection(2).AxisGroup = 1
   .FullSeriesCollection(3).ChartType = xlLine
   .FullSeriesCollection(3).AxisGroup = 1
   .FullSeriesCollection(1).ChartType = xlLine
   .FullSeriesCollection(2).ChartType = xlLine
   .FullSeriesCollection(3).ChartType = xlColumnClustered
End With
End Sub

 

although I can't really see why you set the type twice for each series?

Avatar
Andy White
Member
Members

Dashboards

Power Query
Level 0
Forum Posts: 11
Member Since:
October 28, 2021
sp_UserOfflineSmall Offline
3
January 11, 2022 - 9:44 pm
sp_Permalink sp_Print

Thanks Velouria,

Your suggestion works for my issue.

Thanks Again

Andy

sp_Feed
Go to top
Forum Timezone: Australia/Brisbane
Most Users Ever Online: 245
Currently Online: Alan Sidman, Sherry Fox, Hanan Khan, Alberto Garavaglia, Jack Aston, Martin Delloca, Shoua Lee, Young You
Guest(s) 12
Currently Browsing this Page:
1 Guest(s)
Top Posters:
SunnyKow: 1432
Anders Sehlstedt: 880
Purfleet: 414
Frans Visser: 346
David_Ng: 306
lea cohen: 237
Jessica Stewart: 219
A.Maurizio: 213
Aye Mu: 201
Hans Hallebeek: 185
Newest Members:
Kwaje Alfred Mogga
thong nguyen
Appiagyei Kofi Frimpong
Hilary Burchfield
Richie Wright
Adel Kock
Barbara Murray
Doug Milne
Siobhan Stringer
Rob Rooth
Forum Stats:
Groups: 3
Forums: 24
Topics: 6545
Posts: 28653

 

Member Stats:
Guest Posters: 49
Members: 32831
Moderators: 2
Admins: 4
Administrators: Mynda Treacy, Philip Treacy, Catalin Bombea, FT
Moderators: Velouria, Riny van Eekelen
© Simple:Press —sp_Information

Sidebar

Blog Categories

  • Excel
  • Excel Charts
  • Excel Dashboard
  • Excel Formulas
  • Excel Office Scripts
  • Excel PivotTables
  • Excel Shortcuts
  • Excel VBA
  • General Tips
  • Online Training
  • Outlook
  • Power Apps
  • Power Automate
  • Power BI
  • Power Pivot
  • Power Query
microsoft mvp logo
trustpilot excellent rating
Secured by Sucuri Badge
MyOnlineTrainingHub on YouTube Mynda Treacy on Linked In Mynda Treacy on Instagram Mynda Treacy on Twitter Mynda Treacy on Pinterest MyOnlineTrainingHub on Facebook

Sign up to our newsletter and join over 400,000
others who learn Excel and Power BI with us.

 

Company

  • About My Online Training Hub
  • Disclosure Statement
  • Frequently Asked Questions
  • Guarantee
  • Privacy Policy
  • Terms & Conditions
  • Testimonials
  • Become an Affiliate
  • Sponsor Our Newsletter

Support

  • Contact
  • Forum
  • Helpdesk - For Technical Issues

Copyright © 2023 · My Online Training Hub · All Rights Reserved. Microsoft and the Microsoft Office logo are trademarks or registered trademarks of Microsoft Corporation in the United States and/or other countries. Product names, logos, brands, and other trademarks featured or referred to within this website are the property of their respective trademark holders.