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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Summarizing based on Date

I have a date field in my database (MM/DD/YYYY) and would like to be able to summarize by year and or month. How can I display just month in the 'X" axis of a chart?

Thanx

Labels (1)
13 Replies
Not applicable
Author

This works but it doesn't group the data in the list box. I am still trying to figure out how to get the data to roll up by Month, Year and Month/Year

Not applicable
Author

put your code here to check the problem

Not applicable
Author


Load Order__c,
Month(Billing_Date__c) as Month,
Year(Billing_Date__c) as Year
Resident Order__c
Group by Month, Year;

Not applicable
Author

The code is perfect for me, try this.


Load Order__c,
Month(Billing_Date__c) as Month,
Date(Billing_Date__c,'MM/YYYY') as MonthYear1,
MonthName(Billing_Date__c) as MonthYear2,

Year(Billing_Date__c) as Year
Resident Order__c
Group by Month, Year;