and if you really want to use a combination of substrings and charindexesdeclare @MEMBNM varchar(100)set @MEMBNM = 'DOE\JANE\I'select left(@MEMBNM, charindex('\', @MEMBNM)-1) as 'Last Name', right(@MEMBNM, charindex('\', reverse(@MEMBNM))-1) as 'Initials', substring(@MEMBNM, charindex('\', @MEMBNM)+1, len(@MEMBNM) - (charindex('\', reverse(@MEMBNM)) + charindex('\', @MEMBNM))) as 'Forename'_________________Reality of a dreameR