andrewf10
Registered User.
- Local time
- Today, 09:33
- Joined
- Mar 2, 2003
- Messages
- 114
I have a query which is based on another (SearchCriteria2)...the SQL is as below:
SELECT SearchCriteria2.[Problem Source], Sum(SearchCriteria2.[CountOfProblem Source]) AS [SumOfCountOfProblem Source]
FROM SearchCriteria2
GROUP BY SearchCriteria2.[Problem Source];
This gives an output like this:
Problem Source...................SumOfCountOfProblem Source
Authorisation......................1
Availability.........................363
Back Order Report...............64
Breakage...........................2
Collateral Order...................25
Complaint..........................3
Credit...............................7
What I'm trying to do is add another field to this query which will express the "SumOfCountOfProblem Source" column in percentage terms so I can eliminate those below 1%.
This would give a result like this:
Problem Source..................SumOfCountOfProblem Source........Percentage
Availability.........................363..........................................8.06451613
Back Order Report...............64...........................................13.76344086
Collateral Order...................25...........................................5.376344086
Credit................................7............................................1.505376344
Can someone please give me some inspiration?
Thanks in advance
SELECT SearchCriteria2.[Problem Source], Sum(SearchCriteria2.[CountOfProblem Source]) AS [SumOfCountOfProblem Source]
FROM SearchCriteria2
GROUP BY SearchCriteria2.[Problem Source];
This gives an output like this:
Problem Source...................SumOfCountOfProblem Source
Authorisation......................1
Availability.........................363
Back Order Report...............64
Breakage...........................2
Collateral Order...................25
Complaint..........................3
Credit...............................7
What I'm trying to do is add another field to this query which will express the "SumOfCountOfProblem Source" column in percentage terms so I can eliminate those below 1%.
This would give a result like this:
Problem Source..................SumOfCountOfProblem Source........Percentage
Availability.........................363..........................................8.06451613
Back Order Report...............64...........................................13.76344086
Collateral Order...................25...........................................5.376344086
Credit................................7............................................1.505376344
Can someone please give me some inspiration?
Thanks in advance