[blue]Public Function AbbrevState(State)
If State = "New York" Then
AbbrevState = "NY"
ElseIf State = "Georgia" Then
AbbrevState = "GA"
ElseIf State = "West Virginia" Then
AbbrevState = "WV"
[green]'
'Other States for as many as you have.
'[/green]
Else
[green]'Return the same if state fails to compare.[/green]
AbbrevState = State
End If
End Function[/blue]