Is it possible i want to add a case when on top to check if sysdate() month > 2 then go thru below calculation else put value 0.
SUM(LPAD (TO_CHAR (( (CR_Units_01 + DB_Units_01 + CR_Units_02 + DB_Units_02)/
(
CASE MOD('2013', 4)
WHEN 0 THEN (177.14 + 165.71 )
ELSE (177.14 + 160.00 )
END
)), 'FM99999999990.00'), 11))
AS Month2,
Thank you very much for the helpful info.