Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
ledi12
Contributor II
Contributor II

How to aggregate list of dates into one month

Hi,

 

I have a field in my datamodel which contains values like:

1/08/2022

2/08/2022

3/08/2022

1/09/2022

2/09/2022

3/09/2022

etc.

 

I need to create the filter within my sheet which will have the following values:

Aug 2022

Sep 2022

 

So basically I need to aggregate all dates within the single month into the single month.

 

How can I do it?

Labels (4)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

You can use monthname() to group your dates into a yearmonth field

Try to use:

monthname([Datefield])

View solution in original post

2 Replies
Vegar
MVP
MVP

You can use monthname() to group your dates into a yearmonth field

Try to use:

monthname([Datefield])

ledi12
Contributor II
Contributor II
Author

worked like a charm. Thanks!