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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Creating crosstable

Dear Experts:

I have a table of billing totals per month & customer, like that:

CustomerID,BillingMonth,Amount

100;01;3000

100;02;5000

100;03;4000

101;01;3003

102;02;8004

103;03;403

I need to display the data as a crosstable (each month should be represented as a column):

CustomerID;01;02;03;04

It sounds like the opposite of the "crosstable" command.

there is is a way to do that without complicated macros?

Thanks,

Shlomo

1 Solution

Accepted Solutions
johnw
Champion III
Champion III

Just display it that way? Pivot table with CustomerID and BillingMonth as dimensions, drag BillingMonth to the top.

If you want to do it in your data structure itself, look into "generic load", which is the opposite of "crosstable load".

View solution in original post

2 Replies
johnw
Champion III
Champion III

Just display it that way? Pivot table with CustomerID and BillingMonth as dimensions, drag BillingMonth to the top.

If you want to do it in your data structure itself, look into "generic load", which is the opposite of "crosstable load".

Not applicable
Author

Thank you very much John.