Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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! 🙂
Assuming your date field is text, you can try like:
Date(Max(Date#(YourDateField, 'MM/YYYY')), 'MM/YYYY')
Assuming your date field is text, you can try like:
Date(Max(Date#(YourDateField, 'MM/YYYY')), 'MM/YYYY')
Thank you very much for the quick solution!