Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Qlikview Transformation Step / Crosstable

Please see attached example.  Is there a way in the Qlikview script to modify the data from the Excel Format to the Desired Qlikview Format in the attached example using the transformation step, crosstable or another function in the script.  Please let me know.

Thanks

Brian

1 Solution

Accepted Solutions
somenathroy
Creator III
Creator III

Hi,

You may try the below approach:

LOAD Date, 'Biller1'  as Biller,[Biller1 Units] as Units,[Biller1 Revenue] as Revenue

FROM <Source_File>;

Concatenate

LOAD Date, 'Biller2'  as Biller,[Biller2 Units] as Units,[Biller2 Revenue] as Revenue

FROM <Source_File>;

Concatenate

LOAD Date, 'Biller3'  as Biller,[Biller3 Units] as Units,[Biller3 Revenue] as Revenue

FROM <Source_File>;

Regards,

Som

View solution in original post

1 Reply
somenathroy
Creator III
Creator III

Hi,

You may try the below approach:

LOAD Date, 'Biller1'  as Biller,[Biller1 Units] as Units,[Biller1 Revenue] as Revenue

FROM <Source_File>;

Concatenate

LOAD Date, 'Biller2'  as Biller,[Biller2 Units] as Units,[Biller2 Revenue] as Revenue

FROM <Source_File>;

Concatenate

LOAD Date, 'Biller3'  as Biller,[Biller3 Units] as Units,[Biller3 Revenue] as Revenue

FROM <Source_File>;

Regards,

Som