|
[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: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: |
DECLARE @OneStop varchar(50); DECLARE @CaseManagerLName varchar(50); DECLARE @FromDate smalldatetime; DECLARE @ToDate smalldatetime; DECLARE @ReviewerName varchar(50); DECLARE @ReviewType varchar(50); DECLARE @Yes VarChar(1); DECLARE @No VarChar(1); DECLARE @NA VarChar(1); DECLARE @Blank VarChar(1) SET @OneStop = '%'; SET @CaseManagerLName = '%'; SET @FromDate = '01/01/2000'; SET @ToDate = GetDate(); SET @ReviewerName = '%'; SET @ReviewType = '%'; SET @Yes = 'Y'; SET @No = 'N'; SET @NA = 'N/A'; SET @Blank = ''; SELECT OneStop, 'WIA_Adult' AS [Program] , LEFT(convert(char(10), ReviewDate, 127), 7) as ReviewDate , CaseManagerLName , ReviewerName , 'RegSelServ' AS Question , SUM(CASE WHEN RegSelServ LIKE @Yes THEN 1 ELSE 0 END) AS Yes , SUM(CASE WHEN RegSelServ LIKE @No THEN 1 ELSE 0 END) AS No , SUM(CASE WHEN RegSelServ LIKE @NA THEN 1 ELSE 0 END) AS NA , SUM(CASE WHEN RegSelServ = @Blank THEN 1 ELSE 10 END) AS Blank , SUM(CASE WHEN RegSelServ IS NULL THEN 1 ELSE 100 END) AS oNULL FROM WIA_Adult WHERE (OneStop LIKE @OneStop) AND (CaseManagerLName LIKE @CaseManagerLName) AND (ReviewDate BETWEEN @FromDate AND @ToDate) AND (ReviewerName LIKE @ReviewerName) AND (ReviewType LIKE @ReviewType) AND (RegSelServ IN (@yes, @no) ) GROUP BY ReviewDate, CaseManagerLName, ReviewerName, OneStop |
Advertisement
| Hall of Fame |