Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
nihhalmca
Specialist II
Specialist II

Derive new field from table

Hi All,

I need to be derived new field from table at script level.

Please have a look at attachment for details.

Thanks,

Nihhal.

1 Solution

Accepted Solutions
PrashantSangle

Hi,

try below

Load * from YourTable;

Left Join

Load EMPID as MANAGERID,ENAME as MANAGERNAME from YourTable;

Regards,

Prashant

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

4 Replies
PrashantSangle

Hi,

try below

Load * from YourTable;

Left Join

Load EMPID as MANAGERID,ENAME as MANAGERNAME from YourTable;

Regards,

Prashant

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
ahaahaaha
Partner - Master
Partner - Master

Hi,

May be like this (look attached file)

FieldValue('ENAME', FieldIndex('EMPID', MANAGERID))


Regards,

Andrey

nihhalmca
Specialist II
Specialist II
Author

Thanks Prashant.

nihhalmca
Specialist II
Specialist II
Author

Hi Andrey, thanks for your kind response and attachment.

Actually i expected at script level.