A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Form Drop-down list



 
 
Thread Tools Display Modes
  #1  
Old February 2nd, 2006, 04:27 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Form Drop-down list

Is there a way to have a drop-down list update several fields at once? For
example, I've got a drop down list with 3 fields: category code, G/L acct
nbr, and Acct Unit and I would like to update all 3 fields in my record.
However, there is only one "bound" field. Is there any way around this? Of
course, I could just store category code in my main table and do a table
lookup when I want the other two fields. For simplicities sake, I would
prefer to have the drop-down list just update the 3 fields in the main table.
  #2  
Old February 2nd, 2006, 04:38 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Form Drop-down list

What happens if you go to a record and change the category code? Do you then
also need to change the other two fields? Also, what happens if Acct Unit
changes for a particular category? Do you need to go find and update every
record that uses this category? If the answers to these questions are yes
then you need to put the fields into the Category table and use a join to
this table whenever you need to see them.

You can easily add the fields to the combo's rowsource and just display the
values on the form (in read/only controls).

--
Sandra Daigle [Microsoft Access MVP]
Please post all replies to the newsgroup.


Julie Mascatello wrote:
Is there a way to have a drop-down list update several fields at
once? For example, I've got a drop down list with 3 fields:
category code, G/L acct nbr, and Acct Unit and I would like to update
all 3 fields in my record. However, there is only one "bound" field.
Is there any way around this? Of course, I could just store category
code in my main table and do a table lookup when I want the other two
fields. For simplicities sake, I would prefer to have the drop-down
list just update the 3 fields in the main table.



  #3  
Old February 2nd, 2006, 05:49 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Form Drop-down list

If I understand your question right, then just follow these simple steps.

In Design View, ensure the Toolbox Wizard is shaded (ON)
Choose the drop down icon off the toolbox. Drag it onto your form. When the
wizard pops up, choose the 3rd option, the one that says find a record on my
form....

Choose which field to be the field to choose from. Only include one of them.
Then, just finish up the wizard as normal. Hope that helps

"Julie Mascatello" wrote:

Is there a way to have a drop-down list update several fields at once? For
example, I've got a drop down list with 3 fields: category code, G/L acct
nbr, and Acct Unit and I would like to update all 3 fields in my record.
However, there is only one "bound" field. Is there any way around this? Of
course, I could just store category code in my main table and do a table
lookup when I want the other two fields. For simplicities sake, I would
prefer to have the drop-down list just update the 3 fields in the main table.

  #4  
Old February 2nd, 2006, 06:04 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Form Drop-down list

Julie,

To add to Sandra's response, this issue is part and parcel of the general
topic "Database Normalization".

Generally, the *only* field to duplicate from a 2nd table is the 2nd table's
Primary Key, called a Foreign Key in the first table. This foreign key
*unlocks* and gives *Access* to all of the fields of the 2nd table through a
query which links the tables by the common field.

The only exception I can think of are time-based fields. For example, an
OrderEntryDetails table needs a a ProductID field (a foreign key to the
Products table), and also a UnitPrice field to store the product's UnitPrice
on the date of the order.

Normalization is IMO the most important topic in relational database design.
Do it well, and the application is a breeze to maintain. The following
links cover this topic.

ACC: Database Normalization Basics
http://support.microsoft.com/?id=100139
http://support.microsoft.com/?id=209534
http://support.microsoft.com/?id=283878

Database Normalization Tips by Luke Chung
http://www.fmsinc.com/tpapers/genacc...abasenorm.html

Support WebCast: Database Normalization Basics
http://support.microsoft.com/default...lurb060600.asp

Database Normalization:
http://burks.bton.ac.uk/burks/foldoc/35/28.htm

5 Rules of Database Normalization:
http://www.datamodel.org/NormalizationRules.html

"Understanding Relational Database Design" Document Available in Download
Center:
http://support.microsoft.com/?id=283698
http://support.microsoft.com/?id=164172

ACC2000: "Understanding Relational Database Design"
http://support.microsoft.com/?id=234208

Fundamentals of Relational Database Design:
http://support.microsoft.com/?id=129519

Database Deisgn Principles:
http://msdn.microsoft.com/library/en...ml/ch04DDP.asp

Hope that helps.
Sprinks

"Julie Mascatello" wrote:

Is there a way to have a drop-down list update several fields at once? For
example, I've got a drop down list with 3 fields: category code, G/L acct
nbr, and Acct Unit and I would like to update all 3 fields in my record.
However, there is only one "bound" field. Is there any way around this? Of
course, I could just store category code in my main table and do a table
lookup when I want the other two fields. For simplicities sake, I would
prefer to have the drop-down list just update the 3 fields in the main table.

 




Thread Tools
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

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Move feild entries from form to form using global variables JackCGW General Discussion 11 November 14th, 2005 05:22 AM
Can I send an email from a form with a choice from drop down list TappinMom General Discussion 9 May 25th, 2005 12:24 AM
Need Help In Printing Current Record in Specific Report RNUSZ@OKDPS Setting Up & Running Reports 1 May 16th, 2005 09:06 PM
Union Query Not Returning A Value Jeff G Running & Setting Up Queries 2 October 19th, 2004 05:47 PM


All times are GMT +1. The time now is 06:52 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.