If-then statement on access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

If "State" column says NJ, and "ransfer" column says T, need to change T to
E. (New to Access, please help)
 
The SQL for the query would look something like:

UPDATE MyTable
SET ransfer = "E"
WHERE State = "NJ" AND ransfer = "T"
 
Thanks I'll try it!

Douglas J. Steele said:
The SQL for the query would look something like:

UPDATE MyTable
SET ransfer = "E"
WHERE State = "NJ" AND ransfer = "T"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Split name, city and state 8
If Statements 3
Vlookup into 2 columns 2
sum product if 2
SUMIF with "OR" criteria 1
Easy Transfer Problem Scanning system 1
IF statement in Access ? 2
Excel VBA 1

Back
Top