Discussion Board for collaboration related to QlikView App Development.
Hi
I'm trying to decipher the following code. The description says that the temporary table allows sorting without adding a separate sorting field or using "DUAL":
TempPreSort: // creating temporary table with pre-sorted fields
Load * Inline [
ProductType
Big
Medium
Small
Misc
];
Products: // Loading in data
Load
ProductID
ProductType
Price
DeliveryLocation
DeliveryTime
DeliveryCost
From [$(Desktop)\Products.xls] (biff, embedded labels, header is 1 lines, table is [Sheet1$]);
Drop Table TempPreSort
My Questions:
Your TempPreSort table defines the load order of your ProductType field, if all field values are listed.
If you want to use this order, set sort option to 'load order' in sort tab.
edit:
1. Yes. Yes.
2. Yes. No.
Your TempPreSort table defines the load order of your ProductType field, if all field values are listed.
If you want to use this order, set sort option to 'load order' in sort tab.
edit:
1. Yes. Yes.
2. Yes. No.