Is it possible to add an additional column to the Customer>Accounts Receivable - Summary Report where instead of reporting 90 days+ there is a break where there is a column showing 91-180 days and then 181+?
I tried editing the SQL in the report but didn't have any luck. Below is the standard report and then my attempt to edit. Can anyone help me make this report work? Thanks!
From exiting report that groups 90 days plus:
Begin Column
FieldName = "#ListOpenAccountReceivableSummary.SixtyOneToNinety"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "61-90"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1155
GroupMethod = groupmethodSum
ColFormat = ""
End Column
Begin Column
FieldName = "#ListOpenAccountReceivableSummary.NinetyPlus"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "90+"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1155
GroupMethod = groupmethodSum
ColFormat = ""
End Column
My attempted editing:
Begin Column
FieldName = "#ListOpenAccountReceivableSummary.NinetyOneToOneHundredEighty"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "91-180"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1155
GroupMethod = groupmethodSum
ColFormat = ""
End Column
Begin Column
FieldName = "#ListOpenAccountReceivableSummary.OneHundredEightyPlus"
DrillDownFieldName = ""
DrillDownReportName = ""
Title = "180+"
VBDataType = vbCurrency
Formula = ""
ColHidden = False
ColNotDisplayable = False
FilterDisabled = False
ColWidth = 1155
GroupMethod = groupmethodSum
ColForma
*This post is locked for comments