Hi, I have the following code which works fine but instead of the highlighted field being NULL it is an empty string. How can I make the select statement insert "No Category". Presently, it is inserting an empty string. category_name has been set as nvarchar(50). Thanks SELECT DISTINCT TOP (100) PERCENT t3.ProjectID, t3.goldPatID, t2.prac_no, t2.prac_eid, t1.goldpracid, t1.vision_patid, t1.yob AS BirthYear, t1.mob AS BirthMonth, dbo.lkupPatientGender.Sex, ISNULL(t3.category_name, 'No Category') AS PatCategory, { fn NOW() } AS Entrydt, t3.LoadRefFROM GPRDTech.gprdsql.TblPracDetails AS t2 INNER JOIN GPRDData.dbo.tblpatdetails AS t1 ON t2.GoldPracID = t1.goldpracid INNER JOIN dbo.tblImport AS t3 ON t1.goldpatid = t3.goldPatID INNER JOIN dbo.lkupPatientGender ON t1.gender = dbo.lkupPatientGender.CodeORDER BY t3.goldPatID