I
Irshad Alam
I have field on the form named Model, in which I want to change last 3
alphabet to capital, generall the data entry is like below :
wa470 llc
wa420
3bc
So, I tried to apply the below, which gives no result (no error or show no
change)
Private Sub Model_AfterUpdate()
Dim last3 As String
last3 = right(Me.Model, 3)
If right(Me.Model, 3) = "llc" Then
UCase (last3)
End If
End Sub
Please advice
Regards
Irshad
alphabet to capital, generall the data entry is like below :
wa470 llc
wa420
3bc
So, I tried to apply the below, which gives no result (no error or show no
change)
Private Sub Model_AfterUpdate()
Dim last3 As String
last3 = right(Me.Model, 3)
If right(Me.Model, 3) = "llc" Then
UCase (last3)
End If
End Sub
Please advice
Regards
Irshad