Advertisement
| Hall of Fame |
|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: |
TRANSFORM SUM(NZ(E.[Total line items]) + NZ( H.History)) AS [SumOfTotal line items]
SELECT T.Cat_Com, T.EndOf2008Target, T.[This Week], T.[Year to Date]
FROM ([SELECT A.*, E.Processor
FROM
(
SELECT F.ID, F.Cat_Com, F.EndOf2008Target, E.total As [This Week], NZ(E.Total) + NZ(F.History) As [Year to Date]
FROM tblFID F LEFT JOIN
(SELECT CatCom, SUM([Total line items]) As Total FROM tblECR GROUP BY CatCom) E ON F.ID = E.CatCom
UNION ALL
SELECT C.ID, C.Category, F.Target, E.Total, NZ(E.Total) + NZ(H.Hist)
FROM ((tblCategory C LEFT JOIN
(SELECT Left(ID,1) As ID2, SUM([Endof2008Target]) As Target FROM TblFID GROUP BY LEFT(ID,1)) F ON C.ID=F.ID2) LEFT JOIN
(SELECT Left(CatCom,1) As ID, SUM([Total line items]) As Total FROM tblECR GROUP BY Left(CatCom,1)) E ON C.ID = E.ID) LEFT JOIN
(SELECT Category, SUM(History) As Hist FROM tblPrcHst GROUP BY Category) H ON C.ID=H.Category
) As A, (SELECT DISTINCT Processor FROM tblECR) E
]. AS T LEFT JOIN tblECR AS E ON (T.Processor=E.Processor) AND (T.ID=E.CatCom OR T.ID=LEFT(E.CatCom,1))) LEFT JOIN tblPrcHst AS H ON (T.Processor=H.Processor) AND (T.ID=H.Category)
GROUP BY T.ID, T.Cat_Com, T.EndOf2008Target, T.[This Week], T.[Year to Date]
ORDER BY T.ID
PIVOT E.Processor;
|