Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Add field in data load(Qlik Sense)

Hi All,

I have a load script to load my QVD file. I want to add an additional field with loaded fields having my own given value.

E.g I want to add new field name as "RES" value as "ResearchData",  for each record.

Thanks

1 Solution

Accepted Solutions
sunny_talwar

May be like this

LOAD YourQVDFields,

     'ResearchData' as RES

FROM .... .qvd (qvd);

View solution in original post

2 Replies
sunny_talwar

May be like this

LOAD YourQVDFields,

     'ResearchData' as RES

FROM .... .qvd (qvd);

Not applicable
Author

Great ! Thanks