Hi to all
My select code doesn't seem to work.
Select Case Me!DAName.Value
Case is = "#"
[DAName] = "00" + [DAName]
Case Is = "##"
[DAName] = "0" + [DAName]
End Select
I'm trying to reformat my numbers. (The hard way). I've got it to work with one case as an if statement
If [DAName] Like "#" Then
[DAName] = "00" + [DAName]
End If
What's wrong with my select case? I know it's probably somewhere in the
Select Case Me!DAName.Value
or it might be in the
Case is = "#"
John