I am importing some data into my access database (access 2000). The data contains about 50 columns with a status and a date, this represents status history. There is also a column for 'current status and a date'. What I need to do is to move this current status and date into the correct column in the most efficient way possible. So far I have "UPDATE tblImport..... WHERE NZ(Current_Status) <> 0;".
Now how do I test the current_status field and perform the correct column updates? Can I use a CASE statement? I do know that certain statuses are much more common that others so a way of doing the tests that takes advantage of this would be good.
Now how do I test the current_status field and perform the correct column updates? Can I use a CASE statement? I do know that certain statuses are much more common that others so a way of doing the tests that takes advantage of this would be good.