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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to add new column manually to the existing table

How to add new column manually to the existing table

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

If table1 is your table with columns A ,B and you need to add column C.

table2

Noconcatenate

Load *,'Calculation/Mapping/anything' as C Resident table1;

Will create table2 with 3 columns and you can drop the table1 or handle it any other ways you need.

View solution in original post

1 Reply
Anonymous
Not applicable
Author

If table1 is your table with columns A ,B and you need to add column C.

table2

Noconcatenate

Load *,'Calculation/Mapping/anything' as C Resident table1;

Will create table2 with 3 columns and you can drop the table1 or handle it any other ways you need.