Pivot Tables

V

Vicki

I have a workbook with multiple worksheets that contain
pivot tables which I have named. I want to add selected
pivot tables to a new worksheet. Is there a way to create a
link without cutting and paste special, link?

Thanks
 
J

JE McGimpsey

Vicki said:
I have a workbook with multiple worksheets that contain
pivot tables which I have named. I want to add selected
pivot tables to a new worksheet. Is there a way to create a
link without cutting and paste special, link?

I'm getting stuck on the part where you've named your pivot tables. Do
you mean that you've named the range that the pivot table resides in?

In that case you may be able to use the INDEX() property.

Say your 1st pivot table is named "table1" and you want to put it into a
new sheet in the same workbook. You can enter:

A1: =INDEX(table1,ROW(),COLUMN())

Copy down and across.

If you want the new table to start on E3, say, subtract constants from
ROW() and COLUMN() to suit, e.g.:

E3: =INDEX(table1,ROW()-2,COLUMN()-4)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top