Hi All
I have a simple system.
Tables: (Fields)
Accounts (AccountNumber, AccountName)
SalesFigures (ID, AccountNumber, Year, Month, Value)
Months (MonthID, ShortName, LongName)
Reports:
SalesFiguresForAccounts
The SalesFiguresForAccounts report is based on Accounts with a chart that has the following crosstab query:
The LinkMasterFields and LinkChildFields are set to [AccountNumber].
It all appears to work well. But on closer inspection, some of the graphs appear to show another account's figures, (none of the accounts have the same figures). Its like that particular report page is not getting formatted correctly.
They print fine, but the user needs to look at the information before printing. I can't have incorrect figures showing up randomly.
The problem is more obvious if you're viewing 4 pages at once.
I have a system that I can send to whoever needs it. Any help would be appreciated..
Many thanks
Nells
I have a simple system.
Tables: (Fields)
Accounts (AccountNumber, AccountName)
SalesFigures (ID, AccountNumber, Year, Month, Value)
Months (MonthID, ShortName, LongName)
Reports:
SalesFiguresForAccounts
The SalesFiguresForAccounts report is based on Accounts with a chart that has the following crosstab query:
Code:
TRANSFORM Sum(SalesFigures.Value) AS SumOfValue
SELECT Months.ShortName
FROM Months INNER JOIN SalesFigures ON Months.MonthID = SalesFigures.Month
WHERE (((Months.MonthID)=[SalesFigures].[Month]))
GROUP BY SalesFigures.Month, Months.ShortName
PIVOT SalesFigures.Year;
The LinkMasterFields and LinkChildFields are set to [AccountNumber].
It all appears to work well. But on closer inspection, some of the graphs appear to show another account's figures, (none of the accounts have the same figures). Its like that particular report page is not getting formatted correctly.
They print fine, but the user needs to look at the information before printing. I can't have incorrect figures showing up randomly.
The problem is more obvious if you're viewing 4 pages at once.
I have a system that I can send to whoever needs it. Any help would be appreciated..
Many thanks
Nells