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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

create an additional column on the load script and fill it with a fixed value.

Hello,

I have a table and on the load script I want to add an additional column (eg named year)

and then fill that column with a given fixed value ( eg 2010)

is this possible?

thanks!

1 Solution

Accepted Solutions
Not applicable
Author

load

ID,

Emp_Name,

Add,

2010 as Year

Resident tablename;

Regards

Ashish

View solution in original post

3 Replies
Not applicable
Author

load

ID,

Emp_Name,

Add,

2010 as Year

Resident tablename;

Regards

Ashish

Not applicable
Author

LOAD

'2010' as Year,

ID,

Nane,

......;

Not applicable
Author

It works! thanks!