but there not show records
but there not show records
When I link master and child field there was eror that shown in photo.
The image I posted was design view of form.
I did not try to set Master/Child links so that is new info for me to work with. Now I get the same error. I've never really needed CROSSTAB queries so am learning new stuff.
This brings us back to the recommendation to use the method described in Allen Browne article. Revise the CROSSTAB query:
TRANSFORM Sum(AssetSum.TotalDue) AS SumOfTotalDue
SELECT [Item List].ECID, [Equipment Categories].Main, [Equipment Categories].[Sub-Category], AssetSum.ItemID, [Item List].Equipment, [Item List].Details, [Item List].SerialNumber, [Item List].Size
FROM [Equipment Categories] RIGHT JOIN ((AssetSum LEFT JOIN [Project List] ON AssetSum.CostCenterID = [Project List].CostCenterID) LEFT JOIN [Item List] ON AssetSum.ItemID = [Item List].ItemID) ON [Equipment Categories].ECID = [Item List].ECID
GROUP BY [Item List].ECID, [Equipment Categories].Main, [Equipment Categories].[Sub-Category], AssetSum.ItemID, [Item List].Equipment, [Item List].Details, [Item List].SerialNumber, [Item List].Size
PIVOT [Project List].CostCenter In ("HQ","Lab","Mini-Office","New Office","New Yard","Yard");
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Sorry. Where I can paste it?
Just modify your existing query with the additional text in red.
Can copy/paste in the query SQL view.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Thank you very very much. ;-)
And when I want add new project I must to add to into this list?
Yes. And modify form or report for another textbox.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Thank you very very much.