Any reason why my OrderBy isn't working. The OverallRankingScore is a numeric field but stills sorts my LeadID
Code:
SELECT TOP 100 PERCENT dbo.Leads.*, LeadID AS LeadIDText, OutcomeID AS OutcomeIDText, OverallRankingScore AS OverallRankingScoreText,
NextTaskTime AS NextTaskTimeText, StatusScore AS StatusScoreText, TelephoneScore AS TelephoneScoreText,
LoanSizeScore AS LoanSizeScoreText, DateAddedScore AS DateAddedScoreText, LoanTypeScore AS LoanTypeScoreText,
EquityScore AS EquityScoreText, SourceScore AS SourceScoreText, OutcomeLastModified AS OutcomeLastModifiedText
FROM dbo.Leads
WHERE (OutcomeID = 'Pending') OR
(OutcomeID = 'No Answer') OR
(OutcomeID = 'Engaged') OR
(OutcomeID = 'Future Business') OR
(OutcomeID = 'Waiting on Base Rate Moving') OR
(OutcomeID = 'Scheduled Call Unsuccessful')
ORDER BY ABS(OverallRankingScore) DESC