Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

FIELD?

HOW TO ADD AN EXTRA FIELD TO AN EXISTING TABLE?

1 Solution

Accepted Solutions
anbu1984
Master III
Master III

T1:

Load *,'NewField' As NewField Resident Table;

View solution in original post

5 Replies
anbu1984
Master III
Master III

T1:

Load *,'NewField' As NewField Resident Table;

its_anandrjs

Hi,

There are many ways a

1. A field based on current field

Load

Field1

If(Field1='A',Field1) as NewField

From LOcation

2. By any resident load

A:

Load * From Location;

join

Load ID,1 as Newfield resident A;

Regards

Anand

Not applicable
Author

thanks bro

Not applicable
Author

pls close this thread

ashfaq_haseeb
Champion III
Champion III

Hi,

Try like this

Load *,

'Flag' As NewField FromTable;


Regards

ASHFAQ