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: 
KKumar92
Contributor III
Contributor III

Group Similar Date

Hi All,

Currently, I  am working on an exercise, please refer to the table below.

Month-YearQty
Jul-1725
Aug-1878
Aug-1892
Aug-1813
Aug-1845
Aug-1882
18-Sep31
18-Sep45
18-Sep96
18-Sep145
18-Sep100

 

As you can see the Same Month is getting repeated again and again several times, whereas I want to have only raw

i.e. Aug-18 should show the Qty as 310.

I have used the following expression in the load script, but it did not resolve the issue.

Date(Floor(Order_Date), 'MMM/YYYY') as Order_YMonth.

Please advise on the above.

Labels (3)
1 Solution

Accepted Solutions
MayilVahanan

Hi @KKumar92 

Try like below

MonthName(Floor(Order_Date)) as Month-Year

in Front end, In straight table, add below

Dim: Month-Year 

Exp: Sum(Qty)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

Hi @KKumar92 

Try like below

MonthName(Floor(Order_Date)) as Month-Year

in Front end, In straight table, add below

Dim: Month-Year 

Exp: Sum(Qty)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
KKumar92
Contributor III
Contributor III
Author

Thanks again, @MayilVahanan for helping out with the issue. It is working..

Regards,

Kishore