I have table with the following columns (this is just a sample since my table has many more columns) and the sample data below:
Order_No|Customer_No|Order_Date(YYYYMMDD)
1 |A001 |20010131
2 |A002 |20021231
3 |A001 |20020324
4 |A002 |20030115
5 |A001 |20040221
I want to create a report where the detail section will look as follows:
Order_No|Customer_No|Order_Date(YYYYMMDD)|Date First Ordered
1 |A001 |20010131 |20010131
2 |A002 |20021231 |20021231
3 |A001 |20020324 |20010131
4 |A002 |20030115 |20021231
5 |A001 |20040221 |20010131
How do I get crystal to find the minimum (first) date the customer ordered? thanks for your help.
Order_No|Customer_No|Order_Date(YYYYMMDD)
1 |A001 |20010131
2 |A002 |20021231
3 |A001 |20020324
4 |A002 |20030115
5 |A001 |20040221
I want to create a report where the detail section will look as follows:
Order_No|Customer_No|Order_Date(YYYYMMDD)|Date First Ordered
1 |A001 |20010131 |20010131
2 |A002 |20021231 |20021231
3 |A001 |20020324 |20010131
4 |A002 |20030115 |20021231
5 |A001 |20040221 |20010131
How do I get crystal to find the minimum (first) date the customer ordered? thanks for your help.