I have this query stub:select poitem.fpartno, pomast.forddate, poitem.frcpdate, CASE poitem.frcpdate WHEN '1900-01-01 00:00:00.000' THEN DATEDIFF(d, pomast.forddate, GETDATE()) ELSE DATEDIFF(d, pomast.forddate, poitem.frcpdate) END AS DAYSfrom poitem left join pomast on poitem.fpono = pomast.fpono and LTRIM(RTRIM(pomast.fstatus)) not in ('CANCELLED', 'AWAITING APPROVAL', 'ON HOLD') and poitem.fnextrels < 1 where LTRIM(RTRIM(poitem.fpartno)) in ('widget01')order by pomast.forddateWhich yields Widget01 2010-01-13 2010-01-15 2Widget01 2010-04-01 2010-04-16 15Widget01 2010-05-07 1900-01-01 13I need to append a '+' to the result of the DATEDIFF if the value in poitem.frcpdate is the default field value '1900-01-01 00:00:00.000', to indicate that the amount of time passed between order and receipt is still growing. Apparently it's not as simple as appending + '+'; is there a way to do this? I was hoping to avoid an extra field flagging received/not received, but if I have to I will go that route.