Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
(Image 2)
Lets assume the table is called Table1... you can do like this
CrossTable:
CrossTable(Item, Value)
LOAD Period,
[Gross Sales],
[Returns],
[Total Off Invoice],
[Rebates],
[BillBacks],
[Co-op]
Resident Table1;
DROP Table Table1;
Lets assume the table is called Table1... you can do like this
CrossTable:
CrossTable(Item, Value)
LOAD Period,
[Gross Sales],
[Returns],
[Total Off Invoice],
[Rebates],
[BillBacks],
[Co-op]
Resident Table1;
DROP Table Table1;
Or if you would like to keep [Period Type]:
CrossTable:
CrossTable(Item, Value, 2)
LOAD Period,
[Period Type],
[Gross Sales],
[Returns],
[Total Off Invoice],
[Rebates],
[BillBacks],
[Co-op]
Resident Table1;
DROP Table Table1;
If I could mark two posts as correct answers, I would . Thank you for your input, this is also correct.