Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Eshwar1
Contributor III
Contributor III

Load latest Jobcode field value

Hi All,

i am trying to create a table chart with following fields 

Branch_code, job_start_date, Jobcode

iam able to achieve latest job_start_date with using below script

Temp_tab1:
LOAD 
    Branch_code,
    job_start_date,
    Jobcode
From Tab.qvd;
 
 
NoConcatenate
Final:
Load
        Branch_code,
     Max(job_start_date) as Job_Start_Date
Resident Temp_tab1
Group by Branch_code;
 
above script is working fine as iam getting latest Job_Start_Date
 
i have another field Jobcode need to retrieve latest jobcode
 
in Final table added the Jobcode field and mention same in Group by clause also
 
after adding the Jobcode field in Table chart it is not showing latest jobcode
 
can you suggest how to achieve this
 
Thank you in advance
Eshwar
 

 

Labels (4)
10 Replies
Eshwar1
Contributor III
Contributor III
Author

Thank you Hirish, working as expected.😊