Hello, I have a table in my database which display supply and return of product from mon-fri. Field names are:
The date is always a sunday's date which indicate the week ending where the sales reports is done.
I'm trying to display them in the following format:
The database will have a form to input current week ending and display the previous 2 weeks for analysis purpose. The report will then be printed for meetings copy.
The problem is, I don't know how to design the report to look into different dates from the same table.
Naturally, I would separate the table week by week and get a subreport to open each one of them. However, because the table is given by another department, I can't really touch it.
Can somebody help?
Cheers
Code:
Date, Mon(Sup),Mon(Ret),Tue(Sup),Tue(Ret),Wed(Sup),Wed(Ret),
Thu(Sup),Thu(Ret),Fri(Sup),Fri(Ret)
The date is always a sunday's date which indicate the week ending where the sales reports is done.
I'm trying to display them in the following format:
Code:
ThisWeek | LastWeek | WeekBefore |
| Sup | Ret | | Sup | Ret | | Sup | Ret |
-----------------------------------------------------
Mon | | | Mon | | | Mon | | |
Tue | | | Tue | | | Tue | | |
Wed | | | Wed | | | Wed | | |
Thu | | | Thu | | | Thu | | |
Fri | | | Fri | | | Fri | | |
The database will have a form to input current week ending and display the previous 2 weeks for analysis purpose. The report will then be printed for meetings copy.
The problem is, I don't know how to design the report to look into different dates from the same table.
Naturally, I would separate the table week by week and get a subreport to open each one of them. However, because the table is given by another department, I can't really touch it.
Can somebody help?
Cheers