I want to be able to find and replace in the axis titles of charts.

I made a chart with the x axis title "Freq (GHz)"
I then copied and pasted the chart many times and just modified the source data.
Now I realise I need the x axis title to say "Frequency (GHz)"

Anyone want to help me out with a macro to find and replace freq with frequency?

I think its going to be something like this
VB Code:
  1. 'Loop through sheets
  2. 'Is it a chart?
  3. 'If so what is the axis title
  4. 'Replace it?
  5.    ActiveChart.Axes(xlValue).AxisTitle.Select
  6.     Selection.Characters.Text = "Frequency (GHz)"
I'm quite tired today and am having difficulty working it through.
2 cans of Red Bull and I'm still drooping!
Any help much appreciated.