nader wrote...
>I have a really big table with date as heading :
>
>People 11/07 12/07 13/07
>john 1 2 5
>wolf 5 4 7
Name the original table Tbl.
>how can I make to be seen as:
>
[quoted text clipped - 5 lines]
>wolf 12/07 4
>wolf 13/07 7
...
In a new worksheet enter your field names in row 1, so People in A1,
Date in B1 and Number in C1. Then enter the following formulas in row
2.
A2:
=INDEX(Tbl,2+INT((ROWS(A$2:A2)-1)/(COLUMNS(Tbl)-1)),1)
B2:
=INDEX(Tbl,1,2+MOD(ROWS(B$2:B2)-1,COLUMNS(Tbl)-1))
C2:
=INDEX(Tbl,2+INT((ROWS(A$2:A2)-1)/(COLUMNS(Tbl)-1)),2+MOD(ROWS(B$2:B2)-1,COLUMNS(Tbl)-1))
Select A2:C2 and fill down as far as needed.
nader - 22 Jan 2007 20:12 GMT
Thank you very much, Harlan
> nader wrote...
> >I have a really big table with date as heading :
[quoted text clipped - 30 lines]
>
> Select A2:C2 and fill down as far as needed.
How to convert a pivot table to a data sheet... using a pivot table!!
This info will do exactly what you want.
http://j-walk.com/ss/excel/usertips/tip068.htm
Cheers,
Jason Lepack
> Hi,
> I have a really big table with date as heading :
[quoted text clipped - 19 lines]
> thanks
> Nader
nader - 22 Jan 2007 20:11 GMT
GREAT!!1 Thanks alot Jason
> How to convert a pivot table to a data sheet... using a pivot table!!
>
[quoted text clipped - 26 lines]
> > thanks
> > Nader