Code:
CASE WHEN CM.ApprovedDate IS NULL THEN ''
ELSE CM.ApprovedDate END
What I would like to do is if ApprovedDate IS NULL then blank the cell, otherwise populate the cell.
however, the results from the query is that if the approvedDate is NULL then it outputs 1900-01-01 00:00:00.000.
Any suggestions?