Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Inverse of function crosstable()

Hi all.

I have table

Manager Month Sales

Smith Jan 10

Smith Feb 20

I want to get:

Manager Jan Feb

Smith 10 20

Is it possible?

Thanx.

4 Replies
Miguel_Angel_Baeyens

Hello,

Try this way:

Raw:LOAD * INLINE [Manager, Month, SalesA, 1, 300A, 2, 200]; GENERIC LOAD * RESIDENT Raw;


Is that what you are looking for?

Not applicable
Author

Just change the diagram type to pivot table (object properties/general) and you can move the month-dimension up as a head line.

Not applicable
Author


Miguel A. Baeyens wrote:
Hello,
Try this way:
<blockquote>Raw: LOAD * INLINE [ Manager, Month, Sales A, 1, 300 A, 2, 200 ]; GENERIC LOAD * RESIDENT Raw;<pre>

Is that what you are looking for?

Thank you.

Its not quite what i need because generic makes many tables and i want to get only one table.

Not applicable
Author


DanielFunke wrote:
Just change the diagram type to pivot table (object properties/general) and you can move the month-dimension up as a head line. <div></div>


I need to transform table during reload not in the document. Anyway, thanx