Is it possible to use a Case function in a access query? I'm trying to create a update query and I'd like to use a Case function to set the value I'm updating based on another column in the same table. So if I have a table like this:
Row Value
1
2
3
I want to update the Value field with 0 if the row is 1 or 2 but set it to Null if the row is 3.
Row Value
1
2
3
I want to update the Value field with 0 if the row is 1 or 2 but set it to Null if the row is 3.