M
mscertified
In a 'Before Update' event I have this code:
If Len(Me!Topic) = 1 Then
Me!Topic = "0" & Me!Topic
End If
I'm getting a VB error "function is preventing saving the data in the field"
Is there a better way of making a single digit have a zero in front of it
without forcing the user to enter it?
Thanks.
If Len(Me!Topic) = 1 Then
Me!Topic = "0" & Me!Topic
End If
I'm getting a VB error "function is preventing saving the data in the field"
Is there a better way of making a single digit have a zero in front of it
without forcing the user to enter it?
Thanks.