Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,790| Members 17,820, Newest waheguruhelpme| Online 223
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » Create an Option group Bound to different fields?

Create an Option group Bound to different fields?

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
Option group in a form as criteria for report Sol Information Technology 13 28-Jul-2006 08:37 AM
Option Group Labels in Report B.Young Information Technology 4 28-Jul-2006 08:25 AM
create a field with text joined from two other fields JiAngelo Information Technology 2 28-Jul-2006 08:22 AM
Bound checkboxes and how to untie it and yet keep it bound EvanSB Information Technology 1 12-Nov-2005 22:39 PM
option group to query or table kris Information Technology 2 06-Nov-2005 12:37 PM


Tags
create, option, group, bound, different, fields
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:28 AM
HotRod's Avatar HotRod
Guest
 
Posts: n/a
   
   
Create an Option group Bound to different fields?

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
I have created a survey and the answer to Question one can either be button
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/12318-create-option-group-bound-different-fields.html
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
1 or 2 or 3 etc. - 6 but only one. I want to use option buttons / radio
buttons to get the answer and then if option 3 is picked save a 1 in field
QA1c. I need to create a new field for each answer instead of just saving
the #3 like the wizard wants me too. How can I bind the anwser to different
fields but still have the option buttons recognized as a group?

Question 1 save answer is either
QA1a
QA1b
QA1c
QA1d
QA1e
QA1f






 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:28 AM
HotRod's Avatar HotRod
Guest
 
Posts: n/a
   
   
Re: Create an Option group Bound to different fields?

OK I've managed to get a block of Radio buttons to work but how do I bind
each radio button to a different field?




"HotRod" wrote in message
news:O%23wPj$4mGHA.1208@TK2MSFTNGP04.phx.gbl...
>I have created a survey and the answer to Question one can either be button
>1 or 2 or 3 etc. - 6 but only one. I want to use option buttons / radio
>buttons to get the answer and then if option 3 is picked save a 1 in field
>QA1c. I need to create a new field for each answer instead of just saving
>the #3 like the wizard wants me too. How can I bind the anwser to different
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
>fields but still have the option buttons recognized as a group?
>
> Question 1 save answer is either
> QA1a
> QA1b
> QA1c
> QA1d
> QA1e
> QA1f
>
>
>



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:28 AM
KARL DEWEY's Avatar KARL DEWEY
Guest
 
Posts: n/a
   
   
Re: Create an Option group Bound to different fields?

Sounds like you are thinking Spreadsheet. Yhere is no need to store the same
information in additional fields as it can be displayed in a form or report
using IIF statements.
You can if you just got to store the data run an update query using IIF
statements. Update for field QA1a would be IIF([YourOptionGroupField] =
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
1, 1, 0)
Update for field QA1c would be IIF([YourOptionGroupField] = 3, 1, 0)

"HotRod" wrote:

> OK I've managed to get a block of Radio buttons to work but how do I bind
> each radio button to a different field?
>
>
>
>
> "HotRod" wrote in message
> news:O%23wPj$4mGHA.1208@TK2MSFTNGP04.phx.gbl...
> >I have created a survey and the answer to Question one can either be button
> >1 or 2 or 3 etc. - 6 but only one. I want to use option buttons / radio
> >buttons to get the answer and then if option 3 is picked save a 1 in field
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
> >QA1c. I need to create a new field for each answer instead of just saving
> >the #3 like the wizard wants me too. How can I bind the anwser to different
> >fields but still have the option buttons recognized as a group?
> >
> > Question 1 save answer is either
> > QA1a
> > QA1b
> > QA1c
> > QA1d
> > QA1e
> > QA1f
> >
> >
> >

>
>
>

Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:28 AM
HotRod's Avatar HotRod
Guest
 
Posts: n/a
   
   
Re: Create an Option group Bound to different fields?

I need to store teh boolean value in seperate fields so that it can be
merged with additional data and used in an SPSS syntax program that was
created a few years ago. I really don't want to change the the format now.
Since I have a group of Radio buttons working how can I pass the selected
radio button value to the table?




"KARL DEWEY" wrote in message
news:69A76CB0-1421-4A39-93EF-10F1597CDA36@microsoft.com...
> Sounds like you are thinking Spreadsheet. Yhere is no need to store the
> same
> information in additional fields as it can be displayed in a form or
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
> report
> using IIF statements.
> You can if you just got to store the data run an update query using IIF
> statements. Update for field QA1a would be IIF([YourOptionGroupField]
> =
> 1, 1, 0)
> Update for field QA1c would be IIF([YourOptionGroupField] = 3, 1, 0)
>
> "HotRod" wrote:
>
>> OK I've managed to get a block of Radio buttons to work but how do I bind
>> each radio button to a different field?
>>
>>
>>
>>
>> "HotRod" wrote in message
>> news:O%23wPj$4mGHA.1208@TK2MSFTNGP04.phx.gbl...
>> >I have created a survey and the answer to Question one can either be
>> >button
>> >1 or 2 or 3 etc. - 6 but only one. I want to use option buttons / radio
>> >buttons to get the answer and then if option 3 is picked save a 1 in
>> >field
>> >QA1c. I need to create a new field for each answer instead of just
>> >saving
>> >the #3 like the wizard wants me too. How can I bind the anwser to
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
>> >different
>> >fields but still have the option buttons recognized as a group?
>> >
>> > Question 1 save answer is either
>> > QA1a
>> > QA1b
>> > QA1c
>> > QA1d
>> > QA1e
>> > QA1f
>> >
>> >
>> >

>>
>>
>>



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:28 AM
HotRod's Avatar HotRod
Guest
 
Posts: n/a
   
   
Re: Create an Option group Bound to different fields?

  Donate Today!  
Another thing that may work is how can I get the value from an option button
and pass it to a check box? I might be able to run this all in a small VBA
code?

I've tried Option276.value but it doesn't work, how can I tell if the option
button is selected.




"HotRod" wrote in message
news:O%23wPj$4mGHA.1208@TK2MSFTNGP04.phx.gbl...
>I have created a survey and the answer to Question one can either be button
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
>1 or 2 or 3 etc. - 6 but only one. I want to use option buttons / radio
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=12318
>buttons to get the answer and then if option 3 is picked save a 1 in field
>QA1c. I need to create a new field for each answer instead of just saving
>the #3 like the wizard wants me too. How can I bind the anwser to different
>fields but still have the option buttons recognized as a group?
>
> Question 1 save answer is either
> QA1a
> QA1b
> QA1c
> QA1d
> QA1e
> QA1f
>
>
>



Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 335 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,038 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 81 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 116 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 229 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 44 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 414 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 08:57 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.51934 seconds with 30 queries