Dynamic Ranges--Multiple TableData??

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have 4 seperate columns in one worksheet which I have create seperate
pivot tabels for, I would like the columns corresponding to the pivot table
to be dynamic. Do I make seperate Name for each set of data like below or can
I make one Name capturing all the data.
Need one for Customer, Parts, Priority also.

Name: 'CCFeedback'!TableData

Refers To:
=OFFSET(CCFeedback1!$B$3,0,0,COUNTA(CCFeedback!$A:$A),1)

Thanks in advance
 
If you are on Excel 2003, you don't need any volatile formula in order
to be dynamic. Just select the data range, including headers, and turn
the range into a List by means of Data|List|Create List, then construct
the pivot table from the list so created.

Otherwise:

Define TableData as referring to, assuming that the range of interest is
in A:D, with A1:D1 housing headers...

=CCFeedback!$A$2:INDEX(CCFeedback!$D$2:$D$65336,MATCH(REPT("z",255),CCFeedback!$A$2:$A$65336))
 
Would this work if I am continously adding rows of data to the table, also
many of the workstartoins are not using excel 2003(still using 97) would this
process still work???

Thanks.
 
The List functionality is not available in the versions preceeding Excel
2003. Reading a Excel 2003 list in an earlier version does not cause any
trouble though. The list just becomes an ordinary range.
 

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

Back
Top