• Hugo, about your code:

    SET @ComplaintList = ''

    SELECT @ComplaintList = @ComplaintList+ UserComplaint+ char(13)

    FROM ComplaintsTable

    WHERE UserID=@UserID

    ..

    Return @ComplaintList

    I thought that might be something I could use for various things, but I cannot get the code to work, even with the .. commented out. Is there something missing from the code (I of course substituted my name for yours)

    Nancy