Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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