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

preceding load

Hi All,

Thanks in Advance!!!

Can someone help me in understanding preceding load , so i can implement.

Thanks,

Sunilkumar

5 Replies
Anil_Babu_Samineni

I assume, you will get bulk of threads while start search in Qlik Community. Can you check same. I would always start surf in Help forum only instead of here. Happy to go

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sunny_talwar

What is the issue you are running into? Or is this in general question? May be look here:

Preceding Load

migueldelval
Specialist
Specialist

Hi Sunikumar,

In preceding Load you can make changes in your fields, for example:

    a) Extract Month from a date: Month(date_field) as Month_field,

    b) Make a flag: IF(field_value > 50, 1,0) as Flag_field_value,

    c) Concat fields

    d) Make Keys (autonumber)

    e) Rename Fields

    etc


But First check always "QlikView manual":

"The preceding LOAD feature allows you to load a table in one pass, but still define several successive transformations. Basically, it is a LOAD statement that loads from the LOAD or SELECT statement below, without specifying a source qualifier such as From or Resident that you would normally do. You can stack any number of LOAD statements this way. The statement at the bottom will be evaluated first, then the statement above, and so on until the top statement has been evaluated.

You can achieve the same result using Resident, but in most cases a preceding LOAD will be faster.

Another advantage of preceding load is that you can keep a calculation in one place, and reuse it in LOAD statements placed above."

http://help.qlik.com/en-US/qlikview/12.1/Subsystems/Client/Content/Scripting/preceding-load.htm

LOAD data into QlikView

Regards

Miguel del Valle

ngulliver
Partner - Specialist III
Partner - Specialist III

Have a look at this definition and use of a preceding load:

https://www.quickintelligence.co.uk/preceding-load-qlikview/

Cheers,
neil

MarcoWedel