G
GregB
I have some VBA code
If Me.Serial_Number Like "S*" Then
Me.Serial_Number = Right(Me.Serial_Number, Len(Me.Serial_Number) - 1)
End If
It is set up under the "on current" event
When a user accesses the form they are prompted to input the serial number
they are looking for by a parameter.
I can't get my code to take trim the S off of what they enter into the
paramater...
What am I doing wrong?
Thanks
If Me.Serial_Number Like "S*" Then
Me.Serial_Number = Right(Me.Serial_Number, Len(Me.Serial_Number) - 1)
End If
It is set up under the "on current" event
When a user accesses the form they are prompted to input the serial number
they are looking for by a parameter.
I can't get my code to take trim the S off of what they enter into the
paramater...
What am I doing wrong?
Thanks