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: 
ramanarayan
Creator
Creator

Renamed filed

Hi QV Experts,

I have 2 fields that i renamed in the script in one particular table.

I need to use the same re-named fields to add a calculated field in the same table. It is not letting me do that. Any work around?

Thanks,

Ram

2 Replies
Anonymous
Not applicable

You need to use preceding load:

LOAD

<<Renamed field>>

....,

;

LOAD

Field as Renamed Field,

...,

from Table ;

Siva_Sankar
Master II
Master II

You can use resident load too..

-Siva