jordioni Posted August 28, 2005 Posted August 28, 2005 I have records with a date stamp that I would like to sort and subtotal by month. can anyone tell me how to do that? Thank you
comment Posted August 28, 2005 Posted August 28, 2005 Create a calculation field cMonth (result is date) = DateStamp - Day ( DateStamp ) + 1 Sort and subtotal by this field. Note: When you put the field on the layout, format it to display only the month and the year (in Format -> Date... ).
IdealData Posted August 28, 2005 Posted August 28, 2005 You'll need a separate field to hold the month number and another layout with a SubSummary part on it. 1. Calculation: MONTH_NUMBER = Month ( date_stamp_field ) 2. Summary field: GENERAL_SUMMARY (Total of amount_field) 3. Layout: MUST incorporate a "Sub summary when sorted by...MONTH_NUMBER) 4. Place the GENERAL_SUMMARY in the SubSummary section 5. Place the amount_field in the BODY section (just to confirm it's all ok) Then Find and sort your records by MONTH_NUMBER
comment Posted August 28, 2005 Posted August 28, 2005 I prefer to calculate a DATE that is common to all records of the same month, because: a) it separates records of August 2005 from those of August 2004, etc.; : it sorts correctly; c) can be easily formatted to display in any way you like. Your suggestion using Month() does (:, but not (a) and ©.
jordioni Posted August 28, 2005 Author Posted August 28, 2005 Sorry to be so lame but I don't understand what goes into the formula... my timestamp is a field called Order date. when I create the calculation cMonth, what exactly is the calculation? Your patience is appreciated.
comment Posted August 28, 2005 Posted August 28, 2005 The formula: Order date - Day ( Order date ) + 1 This returns the date of the first day of month of Order date (e.g. for all orders of this month, the result will be Aug 1, 2005). Make sure the result is set to Date.
comment Posted August 28, 2005 Posted August 28, 2005 Wait - did you say timestamp? If your Order date field is of type timestamp, you will need to extract the date first. Here's the formula: Let ( dt = GetAsDate ( Order date ) ; dt - Day ( dt ) + 1 ) The result is Date again.
Recommended Posts
This topic is 7027 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now