Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
nareshthavidishetty
Creator III
Creator III

pull max date data during table extraction

Hi,

We need to extract only max date data during table extraction.

Thanks..

3 Replies
Chanty4u
MVP
MVP

  1. temp: 
  2. LOAD Date 
  3. FROM [YourQVD.qvd] (qvd); 
  4.  
  5. MinMaxDate: 
  6. Load min(Date) as MinDate, 
  7.         max(Date) as MaxDate; 
  8. Load FieldValue('Date',IterNo()) as Date 
  9. autogenerate(1) 
  10. while not IsNull(FieldValue('Date',Iterno())); 
  11.  
  12. Drop Table temp;
Anil_Babu_Samineni

How is your table file format? And explain clearly with sample files or this question related to data?

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
balabhaskarqlik

Maybe:

Use max(date), Peek() functions to get max date,

load the data on comparison with above max date.

load the data on Exist check with the main column data.