For General Info, here is my solution:
'Activate the footer sheet and update the page number
Worksheets("Footer").Select
Range("H6") = SxnPage
'Copy the footer area
Range("B2:I6").CopyPicture Appearance:=xlScreen, Format:=xlPicture
'Create the path to save the picture to later
TheFile = ThePath & "\Footer.png"
'Create a chart to paste the _now picture_ footer into
Charts.Add
ActiveChart.ChartType = xlColumnClustered
ActiveChart.SetSourceData Source:=Sheets("Footer").Range("B2:I6"), PlotBy _
:=xlColumns
ActiveChart.Location Where:=xlLocationAsObject, Name:="Footer"
ActiveChart.ChartArea.ClearContents
'Size the chart to accept the footer *note - this is double actual size to increase the resolution
With ActiveChart.Parent
.Width = 970
.Height = 160
End With
'Turn off the border/outline
ActiveChart.ChartArea.Select
With Selection.Border
.Weight = 1
.LineStyle = 0
End With
ActiveChart.HasLegend = False
'Paste the copied selection into the chart as a picture
ActiveChart.Paste
'Scale the picture footer inside the chart
ActiveChart.Shapes("Picture 1").Select
Selection.ShapeRange.ScaleWidth 2, msoFalse, msoScaleFromTopLeft
Selection.ShapeRange.ScaleHeight 2, msoFalse, msoScaleFromTopLeft
'Export the sized picture and delete the created chart
ActiveChart.Export Filename:=TheFile, FilterName:="PNG"
ActiveChart.ChartArea.Select
ActiveWindow.Visible = False
Selection.Delete
'Insert the footer picture in the current sheet
Sheets(i).Activate
With ActiveSheet.PageSetup
.CenterFooterPicture.Filename = TheFile
.CenterFooter = "&G"
.FirstPageNumber = FirstPage
.CenterFooterPicture.Width = Application.InchesToPoints(6.7)
.FitToPagesWide = 1
.FitToPagesTall = 1
.CenterHorizontally = True
.CenterVertically = False
End With
Next i
**Can't seem to figure out how to post into those neat little code windows...