Viewing 2 posts - 16 through 17 (of 17 total)
[font="Courier New"]Hi,
Try Out the following set of SQL Statements. I hope it gives you the desired output. Please pardon, if I am wrong.
SELECT
g.GroupName,
e.ElementName,
SUM(CASE WHEN UserID IS NOT...
December 28, 2008 at 3:59 am
#918123
Try this alternate coding ...
Its only a way of rewriting existing formats suggested by other learned members from the forum :-
CASE WHEN ISNULL([FieldName], '5K5') = 'V918899'
THEN '5K5'
ELSE ISNULL([FieldName], '5K5')
END...
December 4, 2008 at 9:57 pm
#908060