Results 1 to 4 of 4

Thread: How to combine two field in access

  1. #1
    Join Date
    Jan 2009
    Posts
    91

    How to combine two field in access

    I have a table in ms access with some values in two fields. I want to combine the existing two fields. Is there a way to perform such thing? Please help guys, i'm in desperate needs... Thanks in advance..!

  2. #2
    Join Date
    May 2008
    Posts
    4,570

    Re: How to combine two field in access

    You must first create a third field, where you can put/save/store the combined value. Now to set the value for the third field you must do the update query. Once done this you may perform the action for deletion of the two fields. If this is what you are looking for you can do this by :
    Code:
    UPDATE YourTable  
      
    SET YourNewField = SkillID & ApplicantID;

  3. #3
    Join Date
    Jan 2009
    Posts
    91

    Re: How to combine two field in access

    But then won't it break all the rules about the primary key field? One field should contain atleast one piece of data... I'm just not sure about this method...! What are your thoughts? Will this work?

  4. #4
    Join Date
    May 2008
    Posts
    4,831

    Re: How to combine two field in access

    Well that really depends on what you are trying to do. If you want to keep the original fields, then you are absolutely right. However, if you don't need the two fields are the value is combined of those 2 fields into one Primary key, there is no problem with it...

Similar Threads

  1. Replies: 4
    Last Post: 09-05-2012, 09:21 PM
  2. Use Of Auto Increment field In Access database
    By Pony in forum Software Development
    Replies: 5
    Last Post: 03-02-2011, 10:24 PM
  3. Field properties in Ms Access 2007
    By Bansi_WADIA in forum Windows Software
    Replies: 5
    Last Post: 08-01-2010, 05:10 AM
  4. Multi Field value field in Microsoft Access
    By Erubiel in forum Windows Software
    Replies: 3
    Last Post: 20-11-2009, 12:55 AM
  5. To access a text field from another form
    By Sanket07 in forum Software Development
    Replies: 6
    Last Post: 06-02-2009, 06:42 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,418,403.37687 seconds with 17 queries