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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
tincholiver
Creator III
Creator III

max date distinct fields

hello everyone,

how is possible to get de max date between fields? 

Example:

 

Data Table     
IDDATE_1DATE_2DATE_3DATE_4Desired data
130/4/202110/5/20215/7/20214/8/20214/8/2021
220/4/202113/5/202111/6/202123/6/202123/6/2021
314/8/202126/8/202117/5/202122/7/202126/8/2021
429/4/202111/7/202127/5/202110/6/202111/7/2021
512/2/202123/4/202112/2/202130/6/202130/6/2021
Labels (1)
1 Solution

Accepted Solutions
Frank_Hartmann
Master II
Master II

maybe like this:

date(Rangemax(DATE_1,DATE_2,DATE_3,DATE_4))

View solution in original post

2 Replies
Frank_Hartmann
Master II
Master II

maybe like this:

date(Rangemax(DATE_1,DATE_2,DATE_3,DATE_4))

tincholiver
Creator III
Creator III
Author

very good! 

thank you @Frank_Hartmann