There are a few problems. You haven't set todate equal to anything. Also, you have two values in the THEN part of the CASE statement. You can't do that. Perhaps if you explained more we'd be able to help. This version compiles fine for me:update due_evals set ext_updated_by = '919999', ext_updated_date = '12/5/2003 9:49:47 AM', datetobefiled = case when due_evals_id = 255584 then '03/30/2004' END, ext_hist_todate = case when due_evals_id = 255584 then '06/30/2003' END where due_evals_id = 255584
Tara