G
Glint
Good Day Guys,
Please help. I have this query that I developed on A2003 and it runs very
well:
SELECT Accounts.AccountID, Accounts.Account, vInExGroup.Zone,
vInExGroup.TemIn, vInExGroup.LIn, vInExGroup.TotalIn, vInExGroup.TemEx,
vInExGroup.LEx, vInExGroup.TotalEx, [TotalIn]-[TotalEx] AS Balance
FROM Accounts INNER JOIN vInExGroup ON Accounts.AccountID = vInExGroup.ACCode;
But my form InEx that is based on it does not display any record on A2007
while it works normally on A2003. What am I missing?
The Accounts is a table while vInExGroup is a query:
SELECT vCashTransactions0.Zone, vCashTransactions0.TDate,
vCashTransactions0.ACCode, vCashTransactions0.CashOrCheque,
vCashTransactions0.Amount, vCashTransactions0.ItemAmount
FROM vCashTransactions0
WHERE (((vCashTransactions0.Zone)=[Forms]![InEx]![Zone1]) AND
((vCashTransactions0.TDate)>=[Forms]![InEx]![SDate] And
(vCashTransactions0.TDate)<=[Forms]![InEx]![EDate]) AND
((vCashTransactions0.ACCode)<>47));
Thanks for your assistance.
Please help. I have this query that I developed on A2003 and it runs very
well:
SELECT Accounts.AccountID, Accounts.Account, vInExGroup.Zone,
vInExGroup.TemIn, vInExGroup.LIn, vInExGroup.TotalIn, vInExGroup.TemEx,
vInExGroup.LEx, vInExGroup.TotalEx, [TotalIn]-[TotalEx] AS Balance
FROM Accounts INNER JOIN vInExGroup ON Accounts.AccountID = vInExGroup.ACCode;
But my form InEx that is based on it does not display any record on A2007
while it works normally on A2003. What am I missing?
The Accounts is a table while vInExGroup is a query:
SELECT vCashTransactions0.Zone, vCashTransactions0.TDate,
vCashTransactions0.ACCode, vCashTransactions0.CashOrCheque,
vCashTransactions0.Amount, vCashTransactions0.ItemAmount
FROM vCashTransactions0
WHERE (((vCashTransactions0.Zone)=[Forms]![InEx]![Zone1]) AND
((vCashTransactions0.TDate)>=[Forms]![InEx]![SDate] And
(vCashTransactions0.TDate)<=[Forms]![InEx]![EDate]) AND
((vCashTransactions0.ACCode)<>47));
Thanks for your assistance.