My crosstab query returns all records for any date the information is entered. My problem is Reports.
I am using the following in the crosstab to rename the date columns:
And the textboxes in my report are based like:
For renamed field d2.
So it isn't the query that needs help, it is the report.
The solution I am using to get the dates into the report is the source of my issue.
Because the information is TYPICALLY workweek only, I am getting a lot of gaps in the data as empty weekend columns show up to ruin the data party.
Again, this is only in the report because of the solution I had to use to get the date fields to display.
Unless someone knows a better way to get crosstab column names to display in a report?
Thanks. Sean.
I am using the following in the crosstab to rename the date columns:
Code:
Expr1: "d" & DateDiff("d",Date()-7,[SelQ_Transaction.TransactionDate])
And the textboxes in my report are based like:
Code:
=DateAdd("d",2,Date()-7)
For renamed field d2.
So it isn't the query that needs help, it is the report.
The solution I am using to get the dates into the report is the source of my issue.
Because the information is TYPICALLY workweek only, I am getting a lot of gaps in the data as empty weekend columns show up to ruin the data party.
Again, this is only in the report because of the solution I had to use to get the date fields to display.
Unless someone knows a better way to get crosstab column names to display in a report?
Thanks. Sean.