Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Jnkansayeboah
Contributor
Contributor

Creating a new field based on other fields in dataset

I would like to learn how to create the field 'Furthest Hiring Stage For Candidates Per Job Requisitions' in my dataset attached. This field should show the furthest hiring stage for each candidate for each job they applied to. I am using QlikSense. How would I do this on QlikSense please?

1 Reply
Frank_Hartmann
Master II
Master II

Maybe like this:

 

 

test1:
LOAD [Job Requisition Identifier], 
     [Candidate Identifier], 
     [Date Of Stages], 
     [Hiring Stages]     
FROM [Training Data.xlsx]
(ooxml, embedded labels, table is Sheet1);

left join

test2:
Load  [Job Requisition Identifier],      
     max([Date Of Stages]) as Date,      
     FirstSortedValue([Hiring Stages],-[Date Of Stages]) as Data 
Resident test1 Group by [Job Requisition Identifier]; 

 

 

 

Frank_Hartmann_2-1615646166083.png