• ok, so how many rows does your query return?: and please confirm that if that returns 100 rows, you want 100 emails, one per row? is that what you are after? (yeah i know it's probably only one that is 'DOWN' at any one time, but it's still relevant)

    SELECT

    [FACILITY NAME],

    [FAILURE],

    [CALL TRACKING NUMBER],

    [LANE],

    [DATE OPEN],

    [TIME OPEN]

    FROM [EQUIPMENT].[DBO].[Event Log]

    WHERE [Intial Up/Down] = 'DOWN'

    AND [UP/DOWN] IS NULL

    it looks to me that the results from those six columns could easily exceed 160 characters:

    [FACILITY NAME],

    [FAILURE],

    [CALL TRACKING NUMBER],

    [LANE],

    [DATE OPEN],

    [TIME OPEN]

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!