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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Create Field in Script and populate

I'm trying to create a new field in my script and populate every row of data with the word 'Flag'.

What is the best way to accomplish this?

Thanks in advance!

1 Solution

Accepted Solutions
Not applicable
Author

Add it to the Load portion of your script.

LOAD ...
'Flag' As NewField
...
FROM Table


View solution in original post

2 Replies
Not applicable
Author

Add it to the Load portion of your script.

LOAD ...
'Flag' As NewField
...
FROM Table


Not applicable
Author

Worked perfectly. Thank you.