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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Find min and max date with format MM/YYYY

Hello qlikers 🙂 ,

I want to find the min date and the max date of a column with the format MM/YYYY. 

How can I do that? Thank in advance! 🙂

Labels (1)
1 Solution

Accepted Solutions
tresesco
MVP
MVP

Assuming your date field is text, you can try like:

Date(Max(Date#(YourDateField, 'MM/YYYY')), 'MM/YYYY')

View solution in original post

2 Replies
tresesco
MVP
MVP

Assuming your date field is text, you can try like:

Date(Max(Date#(YourDateField, 'MM/YYYY')), 'MM/YYYY')

Anonymous
Not applicable
Author

Thank you very much for the quick solution!