T
Telesphore
In a Report TextBox, instead of this expression that Access 2003 declares as
"too complex":
=SWITCH(
[State]="AL";"ALABAMA";
[State]="AK";"ALASKA";
[State]="AZ";"ARIZONA";
[State]="AR";"ARKANSAS";
[State]="CA";"CALIFORNIA";
ETC.)
We would like to use VBA Code, for example:
Private Sub Report_Load()
txtState.Value = IIf(.
..
End Sub
Any help will be appreciated.
Thank you
"too complex":
=SWITCH(
[State]="AL";"ALABAMA";
[State]="AK";"ALASKA";
[State]="AZ";"ARIZONA";
[State]="AR";"ARKANSAS";
[State]="CA";"CALIFORNIA";
ETC.)
We would like to use VBA Code, for example:
Private Sub Report_Load()
txtState.Value = IIf(.
..
End Sub
Any help will be appreciated.
Thank you