I need to find all chart objects that use a particular range as a value for a sequence so that I can update them to use a different range instead.
The following is the code I already have
Option Explicit
Sub testUpdateCharts()
updateCharts Range("A1:A10"), Range("B1:B10")
End Sub
Sub...