• select * into newtable

    where isdate(hopefully_date_field) = 1

    Insert into newtable

    select field1, case field2

    when isdate(hopefully_date_field) = 1 THEN hopefully_date_field

    else null

    end

    Either of these help?



    Michelle