Help me out please...
Ok, i have been trying to do this for months….I kinda gave up on it but am back at it again.
I created a form for a table (Bills). In the form, I have three option buttons (Yes,Tbd,No). The problem is that the value of these options are numbers (1,2,3). Therefore, every time I add a record using the form I end up with numbers on the column (A_Approved). So basically now I have to go to the table & change the numbers into (yes,tbd,no) manually!! It Sucks. Cause I know there has to be some kind of way.
Some one told me that I should use 'Select Case' and the following is what I came up with (totally not working), U can ignore if it doesn’t make sense.
Private Sub Frame38_AfterUp date()
dim xy as integer
dim ab as string (i wanted to define this as text but i dont know how)
xy=frame38.valu e
Select Case Me!Frame38
Case 1:
xy="YES"
Case 2:
xy="TBD"
............
End Select
Thank u very much for reading.
Ok, i have been trying to do this for months….I kinda gave up on it but am back at it again.
I created a form for a table (Bills). In the form, I have three option buttons (Yes,Tbd,No). The problem is that the value of these options are numbers (1,2,3). Therefore, every time I add a record using the form I end up with numbers on the column (A_Approved). So basically now I have to go to the table & change the numbers into (yes,tbd,no) manually!! It Sucks. Cause I know there has to be some kind of way.
Some one told me that I should use 'Select Case' and the following is what I came up with (totally not working), U can ignore if it doesn’t make sense.
Private Sub Frame38_AfterUp date()
dim xy as integer
dim ab as string (i wanted to define this as text but i dont know how)
xy=frame38.valu e
Select Case Me!Frame38
Case 1:
xy="YES"
Case 2:
xy="TBD"
............
End Select
Thank u very much for reading.
Comment