What I'm trying to do is take the value of a control, compare it to a specific string, like "New York" and if the strings match (preferably not case-sensitive), change the value of the control to the state's abbreviation.
So you're saying this will work:
If Me!EPState="New York" Then
Me!EPState="NEY
End If
But I tried it, and it doesn't.
It gives me an error: Type Mismatch. and points to the first line.