Assigning Radio Button value!!!

johnyjassi

Registered User.
Local time
Today, 11:43
Joined
Jun 6, 2008
Messages
64
Hi Guys,

I created two option buttons in my form and these are linked with my table, Its value entered as I press button, It works fine but its value entered is 1 or 2, but i want its values to be entered in the table is "Processed" or "Followup". Any one idea how to do that???
Thanks in advance.
 
Select the option button go to properties and set its value
 
But you can assign only numeric value for text value you have to setup a lookup table from where value of numeric field can be taken
 
I think you'll need to code in some kind evaluation. Something like:

Code:
if me.myOption = 0 then
   'False part goes here
else
   'True part goes her
end if
 
Can you give me an example of this, as I am new to access. i would appreciate your help
 
I just got slammed - I'll check back later
 

Users who are viewing this thread

Back
Top Bottom