Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Date Load Script
Is it possible and supported by Qlik to change the values in the existing tables/loads ?
If possible how to change value of any field on any required row in a Load?
Yes, like already hinted in my example:
if(Field1 = 'x', 'y', Field1) as Field1,
applymap('Map', Key, Field2) as Field2
but if you do it you couldn't apply the wildcard * for the fields anymore because it would lead to duplicate fields which aren't allowed.
- Marcus
You need to load the table and within the load you could adjust the values maybe with:
...
if(Field = 'x', 'y', Field) as Field,
applymap('Map', Key, 'Default') as FieldXYZ
...
- Marcus
Is there any way to change the values of the fields on the same field names. without creating new fields
Yes, like already hinted in my example:
if(Field1 = 'x', 'y', Field1) as Field1,
applymap('Map', Key, Field2) as Field2
but if you do it you couldn't apply the wildcard * for the fields anymore because it would lead to duplicate fields which aren't allowed.
- Marcus