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

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » combining different drop down fields in one record into one field

combining different drop down fields in one record into one field

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
Combining fields from the same table (Possibly with Union?) Shaun Rucker Information Technology 6 28-Jul-2006 08:31 AM
Problem with combining same field query!!!!! Kwgame Information Technology 10 28-Jul-2006 08:25 AM
Combining Fields rml Information Technology 2 28-Jul-2006 08:20 AM
Access Pivot Chart - can't drag and drop fields Philomena Information Technology 0 10-Nov-2005 21:08 PM
Re: Combining Field Data Stacy Information Technology 0 29-Oct-2005 12:35 PM


Tags
combining, different, drop, down, fields, record, field
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:35 AM
Nancy's Avatar Nancy
Guest
 
Posts: n/a
   
   
combining different drop down fields in one record into one field

  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 a table with 5 fields, each of which are drop down. I need to combine
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/13242-combining-different-drop-down-fields-one.html
the five fields in each record into one field for that record. I then need
the entire record to be one drop down field. Is this possible? For example,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
my fields are "event, venue, date, time, parking". Can they be combined so
that all those fields are in one field, so that my info in the record will be
"Ray Charles/EA/Sun Mar 7/Comp"? That record then needs to become a drop
down field so that all events come up and can be chosen as one field?

*








 
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:35 AM
Al Camp's Avatar Al Camp
Guest
 
Posts: n/a
   
   
Re: combining different drop down fields in one record into one field

Nancy,
The data can be concatenated from the values you already entered.
In an unbound text control use this Control Source...
(use your own field names)
= [Performer] & "/" & [Venue] & "/" & [EventDate] & " " & [EventTime] & "/" & [Parking]

Since you've already "captured event, venue, date, time, parking to your table, there's
no need to also save that to another field after you've concatenated the values. Just
"display" the concatenation.
The concatenation can always be re-derived "on the fly" in any subsequent form, query,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
or report. Just the way we did it above.
And... it can also be concatenated into the first column of your combo box for
selection purposes.

(although... you really should be using an EventID key field value for your combo
selection, with the concatenation only there to assist the user in identifying the proper
event)

--
hth
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions

"Nancy" wrote in message
news716177A-2324-43CF-BD35-FF83483292D6@microsoft.com...
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
>I have a table with 5 fields, each of which are drop down. I need to combine
> the five fields in each record into one field for that record. I then need
> the entire record to be one drop down field. Is this possible? For example,
> my fields are "event, venue, date, time, parking". Can they be combined so
> that all those fields are in one field, so that my info in the record will be
> "Ray Charles/EA/Sun Mar 7/Comp"? That record then needs to become a drop
> down field so that all events come up and can be chosen as one field?



Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:35 AM
BruceM's Avatar BruceM
Guest
 
Posts: n/a
   
   
Re: combining different drop down fields in one record into one field

To expand a bit on what Al has written: You can combine the fields in the
combo box row source. What follows assumes you have a primary key field.
You can create a primary key that combines several fields, but a single
field (autonumber, for instance, or any other unique identifier) will
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
simplify things. One way to accomplish your intention is to use the combo
box wizard. Be sure the magic wand icon is highlighted in the toolbox,
click the combo box icon, and click the form to insert the combo box. When
the wizard starts, select the option that begins "Find a record...", and
click Next. Move the primary key field only to the right hand box, and
click Next. Add the label name, and click Finish. Click the combo box to
select it, then click View > Properties. Click the Data tab, then click the
Row Source line. Click the three dots, which will open a query design grid.
In the second (empty) column put something like:
AllInfo: [NameField] & "/" & [DateField] & "/" etc. (use your actual
field names).
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
Use the third (and subsequent columns as needed) to add fields by which you
wish to sort the records. Click the Sort row and make your choice.
You don't need to store the combined field. In fact, you shouldn't. It
will be calculated as needed.

"Nancy" wrote in message
news716177A-2324-43CF-BD35-FF83483292D6@microsoft.com...
>I have a table with 5 fields, each of which are drop down. I need to
>combine
> the five fields in each record into one field for that record. I then need
> the entire record to be one drop down field. Is this possible? For
> example,
> my fields are "event, venue, date, time, parking". Can they be combined
> so
> that all those fields are in one field, so that my info in the record will
> be
> "Ray Charles/EA/Sun Mar 7/Comp"? That record then needs to become a drop
> down field so that all events come up and can be chosen as one field?



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:35 AM
Nancy's Avatar Nancy
Guest
 
Posts: n/a
   
   
Re: combining different drop down fields in one record into one fi

Oh my goodness - thank you! I'm a beginner though, and not smart enough to
know what you are talking about. I'll try to figure it out though. I've
come this far on my own so maybe I can make it all work. Thanks so much!

"Al Camp" wrote:

> Nancy,
> The data can be concatenated from the values you already entered.
> In an unbound text control use this Control Source...
> (use your own field names)
> = [Performer] & "/" & [Venue] & "/" & [EventDate] & " " & [EventTime] & "/" & [Parking]
>
> Since you've already "captured event, venue, date, time, parking to your table, there's
> no need to also save that to another field after you've concatenated the values. Just
> "display" the concatenation.
> The concatenation can always be re-derived "on the fly" in any subsequent form, query,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
> or report. Just the way we did it above.
> And... it can also be concatenated into the first column of your combo box for
> selection purposes.
>
> (although... you really should be using an EventID key field value for your combo
> selection, with the concatenation only there to assist the user in identifying the proper
> event)
>
> --
> hth
> Al Camp
> Candia Computer Consulting - Candia NH
> http://home.comcast.net/~cccsolutions
>
> "Nancy" wrote in message
> news716177A-2324-43CF-BD35-FF83483292D6@microsoft.com...
> >I have a table with 5 fields, each of which are drop down. I need to combine
> > the five fields in each record into one field for that record. I then need
> > the entire record to be one drop down field. Is this possible? For example,
> > my fields are "event, venue, date, time, parking". Can they be combined so
> > that all those fields are in one field, so that my info in the record will be
> > "Ray Charles/EA/Sun Mar 7/Comp"? That record then needs to become a drop
> > down field so that all events come up and can be chosen as one field?

>
>
>

Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:35 AM
Al Camp's Avatar Al Camp
Guest
 
Posts: n/a
   
   
Re: combining different drop down fields in one record into one fi

  Donate Today!  
Nancy,
Check out what Bruce has posted.
If you still have problems, or you have specific questions, post back on this thread.
--
hth
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
Al Camp
Candia Computer Consulting - Candia NH
http://home.comcast.net/~cccsolutions


"Nancy" wrote in message
news:594EF3A2-CDC5-4AC5-B443-2B69F388DF52@microsoft.com...
> Oh my goodness - thank you! I'm a beginner though, and not smart enough to
> know what you are talking about. I'll try to figure it out though. I've
> come this far on my own so maybe I can make it all work. Thanks so much!
>
> "Al Camp" wrote:
>
>> Nancy,
>> The data can be concatenated from the values you already entered.
>> In an unbound text control use this Control Source...
>> (use your own field names)
>> = [Performer] & "/" & [Venue] & "/" & [EventDate] & " " & [EventTime] & "/" & [Parking]
>>
>> Since you've already "captured event, venue, date, time, parking to your table,
>> there's
>> no need to also save that to another field after you've concatenated the values. Just
>> "display" the concatenation.
>> The concatenation can always be re-derived "on the fly" in any subsequent form,
>> query,
>> or report. Just the way we did it above.
>> And... it can also be concatenated into the first column of your combo box for
>> selection purposes.
>>
>> (although... you really should be using an EventID key field value for your combo
>> selection, with the concatenation only there to assist the user in identifying the
>> proper
>> event)
>>
>> --
>> hth
>> Al Camp
>> Candia Computer Consulting - Candia NH
>> http://home.comcast.net/~cccsolutions
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13242
>>
>> "Nancy" wrote in message
>> news716177A-2324-43CF-BD35-FF83483292D6@microsoft.com...
>> >I have a table with 5 fields, each of which are drop down. I need to combine
>> > the five fields in each record into one field for that record. I then need
>> > the entire record to be one drop down field. Is this possible? For example,
>> > my fields are "event, venue, date, time, parking". Can they be combined so
>> > that all those fields are in one field, so that my info in the record will be
>> > "Ray Charles/EA/Sun Mar 7/Comp"? That record then needs to become a drop
>> > down field so that all events come up and can be chosen as one field?

>>
>>
>>



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 09:24 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.52902 seconds with 30 queries