M
Megaton
Hello
Could anyone help me solve this problem please? I have been looking at this
expression for an hour and just couldn't figure out where the problem is.
=DLookUp("TotalUnit","OpeningBal","[ProductName] = " & [ProductName])
This expression is in a report where I would like to pull some total number
for each product out of a query "openingbal"
The openingbal query is as follows, the txFrom datetime value is provided.
SELECT ProductName, Sum(nz([Purchased])-nz([Given])) AS TotalUnit
FROM Transactions
WHERE TransactionDate<Forms!ReportViews!txFrom
GROUP BY ProductName
ORDER BY ProductName;
Thank you in advance.
Could anyone help me solve this problem please? I have been looking at this
expression for an hour and just couldn't figure out where the problem is.
=DLookUp("TotalUnit","OpeningBal","[ProductName] = " & [ProductName])
This expression is in a report where I would like to pull some total number
for each product out of a query "openingbal"
The openingbal query is as follows, the txFrom datetime value is provided.
SELECT ProductName, Sum(nz([Purchased])-nz([Given])) AS TotalUnit
FROM Transactions
WHERE TransactionDate<Forms!ReportViews!txFrom
GROUP BY ProductName
ORDER BY ProductName;
Thank you in advance.