Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 (3)
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!