Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.

Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?

The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.

Many thanks in advance - my vb skills/knowledge is limited.

Cheers
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 3, 10:29*pm, Sarah (OGI)
wrote:
I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.

Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?

The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.

Many thanks in advance - my vb skills/knowledge is limited.

Cheers


Hi Sarah,

I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.

The code would go something like this for the actual copy process:

Sub CopyChart()
ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Sheet2").Select
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub

Cheers,
Ivan.
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 3, 10:54*pm, Ivyleaf wrote:
On Apr 3, 10:29*pm, Sarah (OGI)
wrote:





I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,

I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.

The code would go something like this for the actual copy process:

Sub CopyChart()
* * ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
* * Sheets("Sheet2").Select
* * ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * Link:=False, DisplayAsIcon:=False
End Sub

Cheers,
Ivan.- Hide quoted text -

- Show quoted text -


Hi Sarah,

Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer

Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

For Each Chart In SourceBook.Charts
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next
End Sub

Cheers,
Ivan.
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 3, 11:28*pm, Ivyleaf wrote:
On Apr 3, 10:54*pm, Ivyleaf wrote:





On Apr 3, 10:29*pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
* * ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
* * Sheets("Sheet2").Select
* * ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:

Sub CopyChart()
* * Dim ChartBook As Workbook, SourceBook As Workbook
* * Dim TmpSheets As Integer

* * Set SourceBook = ActiveWorkbook
* * TmpSheets = Application.SheetsInNewWorkbook
* * Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
* * Set ChartBook = Workbooks.Add
* * Application.SheetsInNewWorkbook = TmpSheets
* * TmpSheets = 1

* * For Each Chart In SourceBook.Charts
* * * * Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * With ChartBook.Sheets(TmpSheets)
* * * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * * * * Link:=False, DisplayAsIcon:=False
* * * * * * .Name = Chart.Name
* * * * End With
* * * * ActiveWindow.DisplayGridlines = False
* * * * TmpSheets = TmpSheets + 1
* * Next
End Sub

Cheers,
Ivan.- Hide quoted text -

- Show quoted text -


Hi Sarah,

I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.

Cheers,
Ivan.
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,600
Default Copy charts and remove links to original source data

Hi Sarah,

Simple way is to copy the chart as a picture manually or programmatically as
Ivan suggests, other approaches can be difficult. I have an beta Com-addin
that covers most related requirements, briefly -

Remove links to cells, data moved to series formulas (small data only) or
move data to named array formulas (large data).

Dump source data from chart (whether linked to cells or in formulas) to a
new cell range and optionally re-source the dumped data back to the chart
(replacing the original source).

Contact me if interested (replace the missing punctuation in address below).

Regards,
Peter T
pmbthornton gmail com


"Sarah (OGI)" wrote in message
...
I've got a workbook with multiple worksheets. For every one worksheet

with a
pivot table, there is a corresponding worksheet containing a chart

relating
to that data source.

Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to

the
source data?

The idea is to use the initial workbook to update the source data and

charts
on a monthly basis, then distribute the charts as a separate document.

The
recipients of such information (both internal and external contacts)

should
not be able to access the original source data.

Many thanks in advance - my vb skills/knowledge is limited.

Cheers





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

Ivan
Many thanks for your assistance.

I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.

There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. Will it make the copying out process easier if not
pivot-table charts?

Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer

Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

'For Each Chart In SourceBook.Charts
' Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
' With ChartBook.Sheets(TmpSheets)
' .Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
' .Name = Chart.Name
' End With
' ActiveWindow.DisplayGridlines = False
' TmpSheets = TmpSheets + 1
'Next

For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next

End Sub



"Ivyleaf" wrote:

On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:





On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Sheet2").Select
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer

Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

For Each Chart In SourceBook.Charts
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next
End Sub

Cheers,
Ivan.- Hide quoted text -

- Show quoted text -


Hi Sarah,

I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.

Cheers,
Ivan.

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 7, 9:07*pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.

I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.

There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. *The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. *Will it make the copying out process easier if not
pivot-table charts?

Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? *Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.

Sub CopyChart()
* * *Dim ChartBook As Workbook, SourceBook As Workbook
* * *Dim TmpSheets As Integer

* * *Set SourceBook = ActiveWorkbook
* * *TmpSheets = Application.SheetsInNewWorkbook
* * *Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
* * *Set ChartBook = Workbooks.Add
* * *Application.SheetsInNewWorkbook = TmpSheets
* * *TmpSheets = 1

* * *'For Each Chart In SourceBook.Charts
* * *' * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * *' * *With ChartBook.Sheets(TmpSheets)
* * *' * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * *' * * * *.Name = Chart.Name
* * *' * *End With
* * *' * *ActiveWindow.DisplayGridlines = False
* * *' * *TmpSheets = TmpSheets + 1
* * *'Next

* * *For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
* * * * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * *With ChartBook.Sheets(TmpSheets)
* * * * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * * * * * *.Name = Chart.Name
* * * * *End With
* * * * *ActiveWindow.DisplayGridlines = False
* * * * *TmpSheets = TmpSheets + 1
* * *Next

*End Sub



"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
* * ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
* * Sheets("Sheet2").Select
* * ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
* * Dim ChartBook As Workbook, SourceBook As Workbook
* * Dim TmpSheets As Integer


* * Set SourceBook = ActiveWorkbook
* * TmpSheets = Application.SheetsInNewWorkbook
* * Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
* * Set ChartBook = Workbooks.Add
* * Application.SheetsInNewWorkbook = TmpSheets
* * TmpSheets = 1


* * For Each Chart In SourceBook.Charts
* * * * Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * With ChartBook.Sheets(TmpSheets)
* * * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * * * * Link:=False, DisplayAsIcon:=False
* * * * * * .Name = Chart.Name
* * * * End With
* * * * ActiveWindow.DisplayGridlines = False
* * * * TmpSheets = TmpSheets + 1
* * Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer, wkSheet As Worksheet
Dim ChartObj, ChartCount As Long

Set SourceBook = ActiveWorkbook

For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
ChartCount = ChartCount + 1
End If
Next

If ChartCount < 1 Then Exit Sub

TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ChartCount
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
With ChartBook.Sheets(TmpSheets)
.Activate
.Name = wkSheet.Name
wkSheet.Cells.Copy
.Paste
.ChartObjects.Delete
End With
ChartCount = 1
For Each ChartObj In wkSheet.ChartObjects
ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
ChartBook.Sheets(TmpSheets) _
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
.Top = ChartObj.Top
.Left = ChartObj.Left
End With
ChartCount = ChartCount + 1
Next
TmpSheets = TmpSheets + 1
End If
Next
End Sub

Let me know how you go.

Cheers,
Ivan.
  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

Ivan

Thank you, so so much!! - that works a treat!

One thing though, each sheet displays summary information relating to the
charts. This data contains formulas which reference other worksheets that
are no longer shown in the new workbook. Therefore, I need to do a
copy/pastespecial to remove the formulas. Where/how can I include this in
the code? - I tried to insert ".PasteSpecial Paste:=Values,
Operation:=xlNone, SkipBlanks:=False, Transpose:=False" within the 2nd For
Each in the With section, where the code already states .Paste, but this
causes it to fall over.

Thanks again.

"Ivyleaf" wrote:

On Apr 7, 9:07 pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.

I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.

There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. Will it make the copying out process easier if not
pivot-table charts?

Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer

Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

'For Each Chart In SourceBook.Charts
' Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
' With ChartBook.Sheets(TmpSheets)
' .Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
' .Name = Chart.Name
' End With
' ActiveWindow.DisplayGridlines = False
' TmpSheets = TmpSheets + 1
'Next

For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next

End Sub



"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Sheet2").Select
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer


Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


For Each Chart In SourceBook.Charts
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:

Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer, wkSheet As Worksheet
Dim ChartObj, ChartCount As Long

Set SourceBook = ActiveWorkbook

For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
ChartCount = ChartCount + 1
End If
Next

If ChartCount < 1 Then Exit Sub

TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ChartCount
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1

For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
With ChartBook.Sheets(TmpSheets)
.Activate
.Name = wkSheet.Name
wkSheet.Cells.Copy
.Paste
.ChartObjects.Delete
End With
ChartCount = 1
For Each ChartObj In wkSheet.ChartObjects
ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
ChartBook.Sheets(TmpSheets) _
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
.Top = ChartObj.Top
.Left = ChartObj.Left
End With
ChartCount = ChartCount + 1
Next
TmpSheets = TmpSheets + 1
End If
Next
End Sub

Let me know how you go.

Cheers,
Ivan.

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 15, 11:53*pm, Sarah (OGI)
wrote:
Ivan

Thank you, so so much!! - that works a treat! *

One thing though, each sheet displays summary information relating to the
charts. *This data contains formulas which reference other worksheets that
are no longer shown in the new workbook. *Therefore, I need to do a
copy/pastespecial to remove the formulas. *Where/how can I include this in
the code? - I tried to insert ".PasteSpecial Paste:=Values,
Operation:=xlNone, SkipBlanks:=False, Transpose:=False" within the 2nd For
Each in the With section, where the code already states .Paste, but this
causes it to fall over.

Thanks again.



"Ivyleaf" wrote:
On Apr 7, 9:07 pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.


I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.


There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. *The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. *Will it make the copying out process easier if not
pivot-table charts?


Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? *Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.


Sub CopyChart()
* * *Dim ChartBook As Workbook, SourceBook As Workbook
* * *Dim TmpSheets As Integer


* * *Set SourceBook = ActiveWorkbook
* * *TmpSheets = Application.SheetsInNewWorkbook
* * *Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
* * *Set ChartBook = Workbooks.Add
* * *Application.SheetsInNewWorkbook = TmpSheets
* * *TmpSheets = 1


* * *'For Each Chart In SourceBook.Charts
* * *' * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * *' * *With ChartBook.Sheets(TmpSheets)
* * *' * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * *' * * * *.Name = Chart.Name
* * *' * *End With
* * *' * *ActiveWindow.DisplayGridlines = False
* * *' * *TmpSheets = TmpSheets + 1
* * *'Next


* * *For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
* * * * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * *With ChartBook.Sheets(TmpSheets)
* * * * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * * * * * *.Name = Chart.Name
* * * * *End With
* * * * *ActiveWindow.DisplayGridlines = False
* * * * *TmpSheets = TmpSheets + 1
* * *Next


*End Sub


"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet.. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
* * ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
* * Sheets("Sheet2").Select
* * ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
* * Dim ChartBook As Workbook, SourceBook As Workbook
* * Dim TmpSheets As Integer


* * Set SourceBook = ActiveWorkbook
* * TmpSheets = Application.SheetsInNewWorkbook
* * Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
* * Set ChartBook = Workbooks.Add
* * Application.SheetsInNewWorkbook = TmpSheets
* * TmpSheets = 1


* * For Each Chart In SourceBook.Charts
* * * * Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * With ChartBook.Sheets(TmpSheets)
* * * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * * * * Link:=False, DisplayAsIcon:=False
* * * * * * .Name = Chart.Name
* * * * End With
* * * * ActiveWindow.DisplayGridlines = False
* * * * TmpSheets = TmpSheets + 1
* * Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:


Sub CopyChart()
* Dim ChartBook As Workbook, SourceBook As Workbook
* Dim TmpSheets As Integer, wkSheet As Worksheet
* Dim ChartObj, ChartCount As Long


* Set SourceBook = ActiveWorkbook


* For Each wkSheet In SourceBook.Sheets
* * If wkSheet.ChartObjects.Count 0 Then
* * * ChartCount = ChartCount + 1
* * End If
* Next


* If ChartCount < 1 Then Exit Sub


* TmpSheets = Application.SheetsInNewWorkbook
* Application.SheetsInNewWorkbook = ChartCount
* Set ChartBook = Workbooks.Add
* Application.SheetsInNewWorkbook = TmpSheets
* TmpSheets = 1


* For Each wkSheet In SourceBook.Sheets
* * If wkSheet.ChartObjects.Count 0 Then
* * * With ChartBook.Sheets(TmpSheets)
* * * * .Activate
* * * * .Name = wkSheet.Name
* * * * wkSheet.Cells.Copy
* * * * .Paste
* * * * .ChartObjects.Delete
* * * End With
* * * ChartCount = 1
* * * For Each ChartObj In wkSheet.ChartObjects
* * * * ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * ChartBook.Sheets(TmpSheets) _
* * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * Link:=False, DisplayAsIcon:=False
* * * * With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
* * * * * .Top = ChartObj.Top
* * * * * .Left = ChartObj.Left
* * * * End With
* * * * ChartCount = ChartCount + 1
* * * Next
* * * TmpSheets = TmpSheets + 1
* * End If
* Next
End Sub


Let me know how you go.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

Try just putting the line:

.Cells.PasteSpecial Paste:=xlPasteValues

after the ".Paste" line. This should fix your problem. The only
difference is that you were trying to 'PasteSpecial' to a sheet, where
I believe you can only use that method on a range... hence the
'.Cells' in frot of it.

Hope this helps.

Cheers,
Ivan.
  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

Ivan

Since inserting the text that you suggested, it's now telling me that 'this
operation requires the merged cells to be identically sized'.

Is there a way around this?

"Ivyleaf" wrote:

On Apr 15, 11:53 pm, Sarah (OGI)
wrote:
Ivan

Thank you, so so much!! - that works a treat!

One thing though, each sheet displays summary information relating to the
charts. This data contains formulas which reference other worksheets that
are no longer shown in the new workbook. Therefore, I need to do a
copy/pastespecial to remove the formulas. Where/how can I include this in
the code? - I tried to insert ".PasteSpecial Paste:=Values,
Operation:=xlNone, SkipBlanks:=False, Transpose:=False" within the 2nd For
Each in the With section, where the code already states .Paste, but this
causes it to fall over.

Thanks again.



"Ivyleaf" wrote:
On Apr 7, 9:07 pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.


I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.


There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. Will it make the copying out process easier if not
pivot-table charts?


Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer


Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


'For Each Chart In SourceBook.Charts
' Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
' With ChartBook.Sheets(TmpSheets)
' .Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
' .Name = Chart.Name
' End With
' ActiveWindow.DisplayGridlines = False
' TmpSheets = TmpSheets + 1
'Next


For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next


End Sub


"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited.


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet.. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Sheet2").Select
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer


Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


For Each Chart In SourceBook.Charts
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer, wkSheet As Worksheet
Dim ChartObj, ChartCount As Long


Set SourceBook = ActiveWorkbook


For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
ChartCount = ChartCount + 1
End If
Next


If ChartCount < 1 Then Exit Sub


TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ChartCount
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
With ChartBook.Sheets(TmpSheets)
.Activate
.Name = wkSheet.Name
wkSheet.Cells.Copy
.Paste
.ChartObjects.Delete
End With
ChartCount = 1
For Each ChartObj In wkSheet.ChartObjects
ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
ChartBook.Sheets(TmpSheets) _
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
.Top = ChartObj.Top
.Left = ChartObj.Left
End With
ChartCount = ChartCount + 1
Next
TmpSheets = TmpSheets + 1
End If
Next
End Sub


Let me know how you go.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,

Try just putting the line:

.Cells.PasteSpecial Paste:=xlPasteValues

after the ".Paste" line. This should fix your problem. The only
difference is that you were trying to 'PasteSpecial' to a sheet, where
I believe you can only use that method on a range... hence the
'.Cells' in frot of it.

Hope this helps.

Cheers,
Ivan.



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 141
Default Copy charts and remove links to original source data

On Apr 16, 1:12*am, Sarah (OGI)
wrote:
Ivan

Since inserting the text that you suggested, it's now telling me that 'this
operation requires the merged cells to be identically sized'.

Is there a way around this?



"Ivyleaf" wrote:
On Apr 15, 11:53 pm, Sarah (OGI)
wrote:
Ivan


Thank you, so so much!! - that works a treat! *


One thing though, each sheet displays summary information relating to the
charts. *This data contains formulas which reference other worksheets that
are no longer shown in the new workbook. *Therefore, I need to do a
copy/pastespecial to remove the formulas. *Where/how can I include this in
the code? - I tried to insert ".PasteSpecial Paste:=Values,
Operation:=xlNone, SkipBlanks:=False, Transpose:=False" within the 2nd For
Each in the With section, where the code already states .Paste, but this
causes it to fall over.


Thanks again.


"Ivyleaf" wrote:
On Apr 7, 9:07 pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.


I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.


There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. *The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. *Will it make the copying out process easier if not
pivot-table charts?


Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? *Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.


Sub CopyChart()
* * *Dim ChartBook As Workbook, SourceBook As Workbook
* * *Dim TmpSheets As Integer


* * *Set SourceBook = ActiveWorkbook
* * *TmpSheets = Application.SheetsInNewWorkbook
* * *Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
* * *Set ChartBook = Workbooks.Add
* * *Application.SheetsInNewWorkbook = TmpSheets
* * *TmpSheets = 1


* * *'For Each Chart In SourceBook.Charts
* * *' * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * *' * *With ChartBook.Sheets(TmpSheets)
* * *' * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * *' * * * *.Name = Chart.Name
* * *' * *End With
* * *' * *ActiveWindow.DisplayGridlines = False
* * *' * *TmpSheets = TmpSheets + 1
* * *'Next


* * *For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
* * * * *Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * *With ChartBook.Sheets(TmpSheets)
* * * * * * *.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
* * * * * * *.Name = Chart.Name
* * * * *End With
* * * * *ActiveWindow.DisplayGridlines = False
* * * * *TmpSheets = TmpSheets + 1
* * *Next


*End Sub


"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. *For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. *Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook? *
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. *The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited..


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet.. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
* * ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
* * Sheets("Sheet2").Select
* * ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
* * Dim ChartBook As Workbook, SourceBook As Workbook
* * Dim TmpSheets As Integer


* * Set SourceBook = ActiveWorkbook
* * TmpSheets = Application.SheetsInNewWorkbook
* * Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
* * Set ChartBook = Workbooks.Add
* * Application.SheetsInNewWorkbook = TmpSheets
* * TmpSheets = 1


* * For Each Chart In SourceBook.Charts
* * * * Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * With ChartBook.Sheets(TmpSheets)
* * * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * * * * Link:=False, DisplayAsIcon:=False
* * * * * * .Name = Chart.Name
* * * * End With
* * * * ActiveWindow.DisplayGridlines = False
* * * * TmpSheets = TmpSheets + 1
* * Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:


Sub CopyChart()
* Dim ChartBook As Workbook, SourceBook As Workbook
* Dim TmpSheets As Integer, wkSheet As Worksheet
* Dim ChartObj, ChartCount As Long


* Set SourceBook = ActiveWorkbook


* For Each wkSheet In SourceBook.Sheets
* * If wkSheet.ChartObjects.Count 0 Then
* * * ChartCount = ChartCount + 1
* * End If
* Next


* If ChartCount < 1 Then Exit Sub


* TmpSheets = Application.SheetsInNewWorkbook
* Application.SheetsInNewWorkbook = ChartCount
* Set ChartBook = Workbooks.Add
* Application.SheetsInNewWorkbook = TmpSheets
* TmpSheets = 1


* For Each wkSheet In SourceBook.Sheets
* * If wkSheet.ChartObjects.Count 0 Then
* * * With ChartBook.Sheets(TmpSheets)
* * * * .Activate
* * * * .Name = wkSheet.Name
* * * * wkSheet.Cells.Copy
* * * * .Paste
* * * * .ChartObjects.Delete
* * * End With
* * * ChartCount = 1
* * * For Each ChartObj In wkSheet.ChartObjects
* * * * ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
* * * * ChartBook.Sheets(TmpSheets) _
* * * * * .PasteSpecial Format:="Picture (Enhanced Metafile)", _
* * * * * Link:=False, DisplayAsIcon:=False
* * * * With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
* * * * * .Top = ChartObj.Top
* * * * * .Left = ChartObj.Left
* * * * End With
* * * * ChartCount = ChartCount + 1


...

read more »- Hide quoted text -

- Show quoted text -


Hi Sarah,

Bugger... I didn't test with merged cells. There would be a couple of
other ways to do it, but I would look at any of the other options
associated with the PasteSpecial method... maybe try including the
rest of the options as you did originally. ie. Operation:=xlNone etc.
Not sure off the top of my head.
I'd try to work it out for you now, but I'm about to head off. If you
don't have any success, I'll try to have a look tomorrow night.

Cheers,
Ivan.
  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

Hi Ivan

I've managed to sort it out.

I inserted the following, instead of the ".Paste", performing a PasteSpecial
of the Values, then a PasteSpecial of the Format:

.Cells.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
.Cells.PasteSpecial Paste:=xlFormats, Operation:=xlNone,
SkipBlanks:= _
False, Transpose:=False

Thank you again for all your help!! It's very much appreciated - there's no
way I'd manage that on my own!

I'll leave you in peace now!

Thanks again.
Sarah

"Sarah (OGI)" wrote:

I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.

Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?

The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.

Many thanks in advance - my vb skills/knowledge is limited.

Cheers

  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 128
Default Copy charts and remove links to original source data

Ivan

One more thing...(sorry)

I've now included some logo's on each chart sheet but these aren't being
copied across into the new workbook.

I've tried to include some code for this but its not quite right. Is there
an easy way to capture the pictures with the rest of the data and therefore
paste them into each new worksheet that your code currently creates?

Thanks




"Ivyleaf" wrote:

On Apr 16, 1:12 am, Sarah (OGI)
wrote:
Ivan

Since inserting the text that you suggested, it's now telling me that 'this
operation requires the merged cells to be identically sized'.

Is there a way around this?



"Ivyleaf" wrote:
On Apr 15, 11:53 pm, Sarah (OGI)
wrote:
Ivan


Thank you, so so much!! - that works a treat!


One thing though, each sheet displays summary information relating to the
charts. This data contains formulas which reference other worksheets that
are no longer shown in the new workbook. Therefore, I need to do a
copy/pastespecial to remove the formulas. Where/how can I include this in
the code? - I tried to insert ".PasteSpecial Paste:=Values,
Operation:=xlNone, SkipBlanks:=False, Transpose:=False" within the 2nd For
Each in the With section, where the code already states .Paste, but this
causes it to fall over.


Thanks again.


"Ivyleaf" wrote:
On Apr 7, 9:07 pm, Sarah (OGI)
wrote:
Ivan
Many thanks for your assistance.


I've used the following code, but the organisation of the data has since
changed - does this mean that the code might have to be amended slightly? -
apologies if that is the case, as I do really appreciate your help with this.


There are still pivot tables and still the same number of charts, but the
charts are no longer pivot table charts - they are stand alone (embedded)
charts that are based on different data tables. The sheets containing the
charts now also have a summary of information relating to it, so I need to
copy the values and formatting for all the data and the charts on each sheet
into a new workbook. Will it make the copying out process easier if not
pivot-table charts?


Using the code you provided, I've tried to accomodate the copying of each
sheet as an array (not sure if this is correct)? Also, based on the code
below, it seems to fall over at the point of 'Chart.CopyPicture
Appearance:=xlScreen, Format:=xlPicture', saying that 'object doesn't support
this property or method'.


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer


Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count + 6
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


'For Each Chart In SourceBook.Charts
' Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
' With ChartBook.Sheets(TmpSheets)
' .Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
' .Name = Chart.Name
' End With
' ActiveWindow.DisplayGridlines = False
' TmpSheets = TmpSheets + 1
'Next


For Each Chart In SourceBook.Sheets(Array("PC (Chart)-UK-MONTH", "PC
(Chart)-NI-MONTH"))
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.Activate.PasteSpecial Format:="Picture (Enhanced Metafile)",
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next


End Sub


"Ivyleaf" wrote:
On Apr 3, 11:28 pm, Ivyleaf wrote:
On Apr 3, 10:54 pm, Ivyleaf wrote:


On Apr 3, 10:29 pm, Sarah (OGI)
wrote:


I've got a workbook with multiple worksheets. For every one worksheet with a
pivot table, there is a corresponding worksheet containing a chart relating
to that data source.


Via a macro, I'd like to be able to select all sheets containing '(Chart)'
in the worksheet name and copy them out into another workbook. Would I do
this by selecting each sheet and doing a 'move/copy' to a new workbook?
Once the sheets are exported, is there an easy way to remove all links to the
source data?


The idea is to use the initial workbook to update the source data and charts
on a monthly basis, then distribute the charts as a separate document. The
recipients of such information (both internal and external contacts) should
not be able to access the original source data.


Many thanks in advance - my vb skills/knowledge is limited..


Cheers


Hi Sarah,


I'm sure I'll soon be corrected, but to my understanding you can't
have a chart without the underlying data being stored in a sheet
somewhere (pivot table / range etc). The only thing I can think of if
you absolutely must separate it from the data would be to copy the
chart object as a picture object and paste it into another sheet.. I
don't think you could pase to a 'chart' sheet though, it would have to
just be a normal worksheet that you are pasting the object onto.


The code would go something like this for the actual copy process:


Sub CopyChart()
ActiveChart.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Sheet2").Select
ActiveSheet.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


Just some more code... This will loop through the current workbook,
make a new one and copy all the charts to the new one as pictures. It
will also rename all the sheets in the new book to match the names in
the source book. The only thing that might be a bit tricky is getting
the sizing right. You can get the active window size, but I'm not sure
off the top of my head how to work out how much to subtract for scroll
bars etc. Anyway, hope this helps:


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer


Set SourceBook = ActiveWorkbook
TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ActiveWorkbook.Charts.Count
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


For Each Chart In SourceBook.Charts
Chart.CopyPicture Appearance:=xlScreen, Format:=xlPicture
With ChartBook.Sheets(TmpSheets)
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
.Name = Chart.Name
End With
ActiveWindow.DisplayGridlines = False
TmpSheets = TmpSheets + 1
Next
End Sub


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


I just noticed a problem with my code. It looks like the .PasteSpecial
method in this context pastes to the Active sheet regardless of the
fact I am calling it inside a With block. To solve this, just put the
line ".Activate" directly before it. That way it is activating the
correct sheet to paste to.


Cheers,
Ivan.- Hide quoted text -


- Show quoted text -


Hi Sarah,


This makes quite a bit of difference. I have re-worked it, and I
*think* this might do the trick for you, or close anyway:


Sub CopyChart()
Dim ChartBook As Workbook, SourceBook As Workbook
Dim TmpSheets As Integer, wkSheet As Worksheet
Dim ChartObj, ChartCount As Long


Set SourceBook = ActiveWorkbook


For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
ChartCount = ChartCount + 1
End If
Next


If ChartCount < 1 Then Exit Sub


TmpSheets = Application.SheetsInNewWorkbook
Application.SheetsInNewWorkbook = ChartCount
Set ChartBook = Workbooks.Add
Application.SheetsInNewWorkbook = TmpSheets
TmpSheets = 1


For Each wkSheet In SourceBook.Sheets
If wkSheet.ChartObjects.Count 0 Then
With ChartBook.Sheets(TmpSheets)
.Activate
.Name = wkSheet.Name
wkSheet.Cells.Copy
.Paste
.ChartObjects.Delete
End With
ChartCount = 1
For Each ChartObj In wkSheet.ChartObjects
ChartObj.CopyPicture Appearance:=xlScreen, Format:=xlPicture
ChartBook.Sheets(TmpSheets) _
.PasteSpecial Format:="Picture (Enhanced Metafile)", _
Link:=False, DisplayAsIcon:=False
With ChartBook.Sheets(TmpSheets).Shapes(ChartCount)
.Top = ChartObj.Top
.Left = ChartObj.Left
End With
ChartCount = ChartCount + 1


...

read more »- Hide quoted text -

- Show quoted text -


Hi Sarah,

Bugger... I didn't test with merged cells. There would be a couple of
other ways to do it, but I would look at any of the other options
associated with the PasteSpecial method... maybe try including the
rest of the options as you did originally. ie. Operation:=xlNone etc.
Not sure off the top of my head.
I'd try to work it out for you now, but I'm about to head off. If you
don't have any success, I'll try to have a look tomorrow night.

Cheers,
Ivan.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to copy sheet with charts without link to original data Esty Charts and Charting in Excel 11 April 2nd 23 06:43 PM
Links doesnt work in the copy version of the original sheet Alireza Nejad[_2_] Excel Discussion (Misc queries) 2 February 23rd 09 06:44 PM
Charts not recognizing source data if original linked data is changed. JLC Charts and Charting in Excel 3 October 14th 05 01:29 AM
Copy tabs(sheets) from workbook without link to original source Rich Ulichny Excel Discussion (Misc queries) 3 August 25th 05 02:11 AM
Copy tabs(sheets) from workbook without link to original source Rich Ulichny Links and Linking in Excel 2 August 9th 05 03:26 PM


All times are GMT +1. The time now is 01:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"