UPDATE _DATA SET
[_DATA].Claim_Status = "UNKNOWN",
[_DATA].State_Filed = "XX",
[_DATA].Disease_Category = "UNKNOWN"
WHERE
((([_DATA].Claim_Status) Is Null) AND
(([_DATA].State_Filed) Is Null) AND
(([_DATA].Disease_Category) Is Null));
This code is what I got from typing in criteria in query design. It seems that this only runs when claim_status, state_filed, and disease_category are all null (empty) cells. I want to run a query that fills in "UNKNOWN" into empty cells under Claim_Status, "XX" int empty cells under State_Filed, etc. The condition should not include "AND" which means they are basically run separately.
Can anyone help me with this?
Thanks in advance.