Hi All,
Not too sure which direction to go with this Update Query.
I import into my database data from a website based in Mexico, it is to do with AM and FM Mexican stations. I am trying to keep my information current, looking for new stations and changes to call letters.
The state abbreviations they use, I want to change this within my database due to the fact this data goes into another database which has different State abbreviations, mainly the two letter code instead of the 3 to 4 letters that is used within the imported data.
I have an update query setup to change this manually, but I don't think setting up 32 update queries is the best direction due to each Mexican State, I would like to do this in one press of a button on are form if possible.
Can I do this with VBA, are Macro or other suggestions please!!
Here is my update query at present, manual process.
Code:
UPDATE MexicanData SET MexicanData.State = "AG"
WHERE (((MexicanData.State)="Ags."));
Thanks