Pivot Table Lookup Grid

  • Thread starter Thread starter MIVELD
  • Start date Start date
M

MIVELD

Hi

I am looking for a way to lookup a particular cell within a pivo
table

the pivot table contains 8000 account numbers down the left hand sid
and the Months accross the top and sales in the grid.

Am am wanting to put the account number and Month into a cell and pul
through the sales for that month i am also looking to then show th
previous and next 3 months sales in the previous and next 3 cells o
the same row, Smaple of what i want below but i cant find the righ
formula.

Other problem is that the pivot table is built of a server and th
account numbers are not sequential

Any Ideas


Month
Aug-05

Account No -3 -2 -1 Aug-05 +1 +2 +3
13758
12547
12357
12369
14789
36541
25487


Cheers

A
 
The logic will be

=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False))
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)+1)
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)+2)
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)+3)
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)-1)
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)-2)
=INDEX(PIVOTTABLE,MATCH(Company,PTColumn,False),MATCH(Date,PTHeader,False)-3)

The specifics depend on the format of the PT headers.
 

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