CR 8.5, SQL db, Pivotal (CRM) front end.
I have a Sales Opportunity report that I'm working on now that is driving me bonkers.
My goal is to give the user the choice to sort either by Account Manager (String) or Date (Date). If AM is chosen group by AM and sort by Date Descending. If Date is chosen, group by Date Descending printed for each month.
I've tried using the AM as Group 1 and Date as Group 2 and conditionally suppressing depending on the paramater. However, when I choose Date, it still groups by AM first.
At this moment, I've changed the report so there is only Group1 based on a formula, but since I have to turn the Date to text, it sorts the dates in Alpha order.
If {?SortOrder} = 1
Then {Employee.Account Manager Code}
Else If {?SortOrder} = 2
Then (MonthName(Month({Opportunity.Expected Decision Date})) + " " + ToText(Year({Opportunity.Expected Decision Date}),0,""))
I'm at a loss on which way to go to get the report grouped and sorted the way they want. Group by formula? Conditionally suppress? Both? Neither?!?!?!
~glenda
I have a Sales Opportunity report that I'm working on now that is driving me bonkers.
My goal is to give the user the choice to sort either by Account Manager (String) or Date (Date). If AM is chosen group by AM and sort by Date Descending. If Date is chosen, group by Date Descending printed for each month.
I've tried using the AM as Group 1 and Date as Group 2 and conditionally suppressing depending on the paramater. However, when I choose Date, it still groups by AM first.
At this moment, I've changed the report so there is only Group1 based on a formula, but since I have to turn the Date to text, it sorts the dates in Alpha order.
If {?SortOrder} = 1
Then {Employee.Account Manager Code}
Else If {?SortOrder} = 2
Then (MonthName(Month({Opportunity.Expected Decision Date})) + " " + ToText(Year({Opportunity.Expected Decision Date}),0,""))
I'm at a loss on which way to go to get the report grouped and sorted the way they want. Group by formula? Conditionally suppress? Both? Neither?!?!?!
~glenda