data not flowing properly

G

Guest

My data is not populating related tables. For instance, the sales order
number in the Orders table is not populating the sales order field in the
Order Detail table. The order sequence of my tables is Customer -> Orders ->
Shipping -> Shipping Detail with trunks off of the Orders table going to
Order Detail and Profit. The sales order number is not going past the Orders
table.

I am also getting Error 3101 (?) messages when I try to input data via my
forms. Apparently I am entering data into the many side rather than the one
side?

What am I doing wrong?
 
D

Duane Hookom

What are you doing that makes you think the Order Number should be going to
the Order Details table? Are you using a form with a subform like the
Northwind. mdb?
 
G

Guest

Northwind? I don't know what you mean.

The Order and Order Details table are related with the Sales Order Number
being the primary and foreign keys respectively.

It is my understanding that data flows "downstream" so to speak thru the
tables via the relationships. Is that not right? and if not, what do I do to
make that happen? otherwise you'd be repeatedly entering the same data.
 
D

Duane Hookom

Northwind.mdb is a sample Access application that generally gets installed
when you install Office/Access.

In order to populate the detail records with a value from the Orders table
you should create a main form based on the Orders table and a subform based
on the Order Details table. Set the Link Master/Child properties of the
subform control to the link fields.
 
G

Guest

Ok....let me see if I've got this. If I have seven tables then I have to set
up an input form for each table?

I have seven tables: Customer -> Orders -> Shipping -> Shipping Detail
/ l \
Order Detail l Monthly Open Orders
Profit
I know this is a lot of information but I'm dealing with some seriously
short time constraints. This is the field list description for each table:
Customer: Customer ID, Customer Name, Customer Name Detail, Customer Unit
Orders: Customer ID, Sales Order Number, Skids/Parts Number, Credit Number,
Specialist Code
Order Detail: Sales Order Number, Skids/Parts Number, Skid Quantity, Parts
Quantity, Quote Number, Subsequent Quote Number
Monthly Open Orders: Specialist Code, Customer ID, Customer Name, Customer
Name Detail, Credit Number, Skid Quantity, Parts Quantity, Skid/Parts Number,
Order Date, Sales Order Number, Promise Date, Explanation
Profit: Sales Order Number, Cost,Sales Price, Cost %, % Profit
Shipping: Invoice Number, Sales Order Number, Ship Date, Final Destination
Shipping Detail: Invoice Number, Sales Order Number, Order Date, Promised
Date, Shipped Date, Shipment:partial or Complete?

I set up Order Input Form Part I and Part II. Part I has text boxes for the
information from the customer table, a 4-column list box that I thought would
populate the customer table controls but it won't, a subform for the orders
table and another subform for the orders detail. The orders detail though
did not populate completely. The Sales Order Number and the Skids/Parts
Number didn't flow over from the Orders Table. Is that what you're talking
about with regard to link master/child fields?

Part II contains controls for Sales Order Number, Invoice Number, Order
Date, Promised Date, Shipped Date, Partial or Complete?, Final Destination,
Cost and Sales Price.

Do I need to completely revamp the input forms?
Should I add the fields from the Profit table to the Order Detail table and
delete the Profit table?
I was trying to get all the input on two forms but in reality should I have
three - customer input form, order input and lastly shipping input?
The Monthly Open Orders table may seem redundant but the warehouse can look
at this information in datasheet view until I put together the reports. How
do I make sure that this table is populated w/o having to enter data twice?

I have a conversion team waiting on me to finish the data input testing so
they can begin entering the actual data. Can you give me some feedback on
this information and my questions?
 
D

Duane Hookom

Whoa! I am way to slow to comprehend too much information at one time. I
mentioned a main form and subform with the Link Master and Child properties
and you come back with a full schema, a 4-column list box, and a whole lot
more.

You didn't provide the very basics of what I thought I had suggested. You
should search the samples in the Office installation directory in your
Program Files to see if you have the Northwind.mdb. This sample has much of
the information set up the way you need.

If you can't find the Northwind, set up a single view form based on the
Orders table. Create a continuous subform based on the Order Details. Add
the subform to the Orders form and set the Link Master and Link Child
properties to [Sales Order Number].

BTW: You should avoid using spaces and symbols in field and other object
names ie: -%...
Also controls such as combo boxes and list boxes can be bound to a single
field, not multiple fields. If you are attempting to store values from more
than one column of these controls, it generally suggests an un-normalized
table structure.
 
G

Guest

Sorry. I didn't mean to confuse the issue. I had already set up forms and
was trying to keep them w/o making too many changes. I had a meeting with the
conversion team earlier this week and presented those forms so I was hoping
to keep what I had but we're all learning here. I'll look to see if we have
the Northwind. It looks, though, like I will have to start from scratch and
set up several forms instead of two. We have a massive amount of data to
input as the excel spreadsheet file is corrupted. They're not going to like
having to open several forms to enter data from just one line in
excel...access is hardly simple.



Duane Hookom said:
Whoa! I am way to slow to comprehend too much information at one time. I
mentioned a main form and subform with the Link Master and Child properties
and you come back with a full schema, a 4-column list box, and a whole lot
more.

You didn't provide the very basics of what I thought I had suggested. You
should search the samples in the Office installation directory in your
Program Files to see if you have the Northwind.mdb. This sample has much of
the information set up the way you need.

If you can't find the Northwind, set up a single view form based on the
Orders table. Create a continuous subform based on the Order Details. Add
the subform to the Orders form and set the Link Master and Link Child
properties to [Sales Order Number].

BTW: You should avoid using spaces and symbols in field and other object
names ie: -%...
Also controls such as combo boxes and list boxes can be bound to a single
field, not multiple fields. If you are attempting to store values from more
than one column of these controls, it generally suggests an un-normalized
table structure.

--
Duane Hookom
MS Access MVP

TechyTemp said:
Ok....let me see if I've got this. If I have seven tables then I have to
set
up an input form for each table?

I have seven tables: Customer -> Orders -> Shipping -> Shipping Detail
/ l \
Order Detail l Monthly Open Orders
Profit
I know this is a lot of information but I'm dealing with some seriously
short time constraints. This is the field list description for each
table:
Customer: Customer ID, Customer Name, Customer Name Detail, Customer Unit
Orders: Customer ID, Sales Order Number, Skids/Parts Number, Credit
Number,
Specialist Code
Order Detail: Sales Order Number, Skids/Parts Number, Skid Quantity, Parts
Quantity, Quote Number, Subsequent Quote Number
Monthly Open Orders: Specialist Code, Customer ID, Customer Name, Customer
Name Detail, Credit Number, Skid Quantity, Parts Quantity, Skid/Parts
Number,
Order Date, Sales Order Number, Promise Date, Explanation
Profit: Sales Order Number, Cost,Sales Price, Cost %, % Profit
Shipping: Invoice Number, Sales Order Number, Ship Date, Final Destination
Shipping Detail: Invoice Number, Sales Order Number, Order Date, Promised
Date, Shipped Date, Shipment:partial or Complete?

I set up Order Input Form Part I and Part II. Part I has text boxes for
the
information from the customer table, a 4-column list box that I thought
would
populate the customer table controls but it won't, a subform for the
orders
table and another subform for the orders detail. The orders detail though
did not populate completely. The Sales Order Number and the Skids/Parts
Number didn't flow over from the Orders Table. Is that what you're
talking
about with regard to link master/child fields?

Part II contains controls for Sales Order Number, Invoice Number, Order
Date, Promised Date, Shipped Date, Partial or Complete?, Final
Destination,
Cost and Sales Price.

Do I need to completely revamp the input forms?
Should I add the fields from the Profit table to the Order Detail table
and
delete the Profit table?
I was trying to get all the input on two forms but in reality should I
have
three - customer input form, order input and lastly shipping input?
The Monthly Open Orders table may seem redundant but the warehouse can
look
at this information in datasheet view until I put together the reports.
How
do I make sure that this table is populated w/o having to enter data
twice?

I have a conversion team waiting on me to finish the data input testing so
they can begin entering the actual data. Can you give me some feedback on
this information and my questions?
 
D

Duane Hookom

You can generally use forms with multiple subforms. Access isn't a
spreadsheet and allows much greater flexibility and functionality for
storing and reporting related data.

--
Duane Hookom
MS Access MVP

TechyTemp said:
Sorry. I didn't mean to confuse the issue. I had already set up forms
and
was trying to keep them w/o making too many changes. I had a meeting with
the
conversion team earlier this week and presented those forms so I was
hoping
to keep what I had but we're all learning here. I'll look to see if we
have
the Northwind. It looks, though, like I will have to start from scratch
and
set up several forms instead of two. We have a massive amount of data to
input as the excel spreadsheet file is corrupted. They're not going to
like
having to open several forms to enter data from just one line in
excel...access is hardly simple.



Duane Hookom said:
Whoa! I am way to slow to comprehend too much information at one time. I
mentioned a main form and subform with the Link Master and Child
properties
and you come back with a full schema, a 4-column list box, and a whole
lot
more.

You didn't provide the very basics of what I thought I had suggested. You
should search the samples in the Office installation directory in your
Program Files to see if you have the Northwind.mdb. This sample has much
of
the information set up the way you need.

If you can't find the Northwind, set up a single view form based on the
Orders table. Create a continuous subform based on the Order Details. Add
the subform to the Orders form and set the Link Master and Link Child
properties to [Sales Order Number].

BTW: You should avoid using spaces and symbols in field and other object
names ie: -%...
Also controls such as combo boxes and list boxes can be bound to a single
field, not multiple fields. If you are attempting to store values from
more
than one column of these controls, it generally suggests an un-normalized
table structure.

--
Duane Hookom
MS Access MVP

TechyTemp said:
Ok....let me see if I've got this. If I have seven tables then I have
to
set
up an input form for each table?

I have seven tables: Customer -> Orders -> Shipping -> Shipping Detail
/ l \
Order Detail l Monthly Open
Orders
Profit
I know this is a lot of information but I'm dealing with some seriously
short time constraints. This is the field list description for each
table:
Customer: Customer ID, Customer Name, Customer Name Detail, Customer
Unit
Orders: Customer ID, Sales Order Number, Skids/Parts Number, Credit
Number,
Specialist Code
Order Detail: Sales Order Number, Skids/Parts Number, Skid Quantity,
Parts
Quantity, Quote Number, Subsequent Quote Number
Monthly Open Orders: Specialist Code, Customer ID, Customer Name,
Customer
Name Detail, Credit Number, Skid Quantity, Parts Quantity, Skid/Parts
Number,
Order Date, Sales Order Number, Promise Date, Explanation
Profit: Sales Order Number, Cost,Sales Price, Cost %, % Profit
Shipping: Invoice Number, Sales Order Number, Ship Date, Final
Destination
Shipping Detail: Invoice Number, Sales Order Number, Order Date,
Promised
Date, Shipped Date, Shipment:partial or Complete?

I set up Order Input Form Part I and Part II. Part I has text boxes
for
the
information from the customer table, a 4-column list box that I thought
would
populate the customer table controls but it won't, a subform for the
orders
table and another subform for the orders detail. The orders detail
though
did not populate completely. The Sales Order Number and the
Skids/Parts
Number didn't flow over from the Orders Table. Is that what you're
talking
about with regard to link master/child fields?

Part II contains controls for Sales Order Number, Invoice Number, Order
Date, Promised Date, Shipped Date, Partial or Complete?, Final
Destination,
Cost and Sales Price.

Do I need to completely revamp the input forms?
Should I add the fields from the Profit table to the Order Detail table
and
delete the Profit table?
I was trying to get all the input on two forms but in reality should I
have
three - customer input form, order input and lastly shipping input?
The Monthly Open Orders table may seem redundant but the warehouse can
look
at this information in datasheet view until I put together the reports.
How
do I make sure that this table is populated w/o having to enter data
twice?

I have a conversion team waiting on me to finish the data input testing
so
they can begin entering the actual data. Can you give me some feedback
on
this information and my questions?





:

Northwind.mdb is a sample Access application that generally gets
installed
when you install Office/Access.

In order to populate the detail records with a value from the Orders
table
you should create a main form based on the Orders table and a subform
based
on the Order Details table. Set the Link Master/Child properties of
the
subform control to the link fields.

--
Duane Hookom
MS Access MVP

Northwind? I don't know what you mean.

The Order and Order Details table are related with the Sales Order
Number
being the primary and foreign keys respectively.

It is my understanding that data flows "downstream" so to speak thru
the
tables via the relationships. Is that not right? and if not, what
do I
do
to
make that happen? otherwise you'd be repeatedly entering the same
data.

:

What are you doing that makes you think the Order Number should be
going
to
the Order Details table? Are you using a form with a subform like
the
Northwind. mdb?

--
Duane Hookom
MS Access MVP

My data is not populating related tables. For instance, the
sales
order
number in the Orders table is not populating the sales order
field
in
the
Order Detail table. The order sequence of my tables is
Customer ->
Orders ->
Shipping -> Shipping Detail with trunks off of the Orders table
going
to
Order Detail and Profit. The sales order number is not going
past
the
Orders
table.

I am also getting Error 3101 (?) messages when I try to input
data
via
my
forms. Apparently I am entering data into the many side rather
than
the
one
side?

What am I doing wrong?
 
G

Guest

I think I screwed up....I have input the Customer list which has populated
the Customer table. When I go to enter the customer information for an
order, I get an error message that it can't be accepted because it would
create a duplicate. The Customer ID is a primary key and I can't change it
to allow for duplicates. So how do I enter customer information for an
order????

Duane Hookom said:
You can generally use forms with multiple subforms. Access isn't a
spreadsheet and allows much greater flexibility and functionality for
storing and reporting related data.

--
Duane Hookom
MS Access MVP

TechyTemp said:
Sorry. I didn't mean to confuse the issue. I had already set up forms
and
was trying to keep them w/o making too many changes. I had a meeting with
the
conversion team earlier this week and presented those forms so I was
hoping
to keep what I had but we're all learning here. I'll look to see if we
have
the Northwind. It looks, though, like I will have to start from scratch
and
set up several forms instead of two. We have a massive amount of data to
input as the excel spreadsheet file is corrupted. They're not going to
like
having to open several forms to enter data from just one line in
excel...access is hardly simple.



Duane Hookom said:
Whoa! I am way to slow to comprehend too much information at one time. I
mentioned a main form and subform with the Link Master and Child
properties
and you come back with a full schema, a 4-column list box, and a whole
lot
more.

You didn't provide the very basics of what I thought I had suggested. You
should search the samples in the Office installation directory in your
Program Files to see if you have the Northwind.mdb. This sample has much
of
the information set up the way you need.

If you can't find the Northwind, set up a single view form based on the
Orders table. Create a continuous subform based on the Order Details. Add
the subform to the Orders form and set the Link Master and Link Child
properties to [Sales Order Number].

BTW: You should avoid using spaces and symbols in field and other object
names ie: -%...
Also controls such as combo boxes and list boxes can be bound to a single
field, not multiple fields. If you are attempting to store values from
more
than one column of these controls, it generally suggests an un-normalized
table structure.

--
Duane Hookom
MS Access MVP

Ok....let me see if I've got this. If I have seven tables then I have
to
set
up an input form for each table?

I have seven tables: Customer -> Orders -> Shipping -> Shipping Detail
/ l \
Order Detail l Monthly Open
Orders
Profit
I know this is a lot of information but I'm dealing with some seriously
short time constraints. This is the field list description for each
table:
Customer: Customer ID, Customer Name, Customer Name Detail, Customer
Unit
Orders: Customer ID, Sales Order Number, Skids/Parts Number, Credit
Number,
Specialist Code
Order Detail: Sales Order Number, Skids/Parts Number, Skid Quantity,
Parts
Quantity, Quote Number, Subsequent Quote Number
Monthly Open Orders: Specialist Code, Customer ID, Customer Name,
Customer
Name Detail, Credit Number, Skid Quantity, Parts Quantity, Skid/Parts
Number,
Order Date, Sales Order Number, Promise Date, Explanation
Profit: Sales Order Number, Cost,Sales Price, Cost %, % Profit
Shipping: Invoice Number, Sales Order Number, Ship Date, Final
Destination
Shipping Detail: Invoice Number, Sales Order Number, Order Date,
Promised
Date, Shipped Date, Shipment:partial or Complete?

I set up Order Input Form Part I and Part II. Part I has text boxes
for
the
information from the customer table, a 4-column list box that I thought
would
populate the customer table controls but it won't, a subform for the
orders
table and another subform for the orders detail. The orders detail
though
did not populate completely. The Sales Order Number and the
Skids/Parts
Number didn't flow over from the Orders Table. Is that what you're
talking
about with regard to link master/child fields?

Part II contains controls for Sales Order Number, Invoice Number, Order
Date, Promised Date, Shipped Date, Partial or Complete?, Final
Destination,
Cost and Sales Price.

Do I need to completely revamp the input forms?
Should I add the fields from the Profit table to the Order Detail table
and
delete the Profit table?
I was trying to get all the input on two forms but in reality should I
have
three - customer input form, order input and lastly shipping input?
The Monthly Open Orders table may seem redundant but the warehouse can
look
at this information in datasheet view until I put together the reports.
How
do I make sure that this table is populated w/o having to enter data
twice?

I have a conversion team waiting on me to finish the data input testing
so
they can begin entering the actual data. Can you give me some feedback
on
this information and my questions?





:

Northwind.mdb is a sample Access application that generally gets
installed
when you install Office/Access.

In order to populate the detail records with a value from the Orders
table
you should create a main form based on the Orders table and a subform
based
on the Order Details table. Set the Link Master/Child properties of
the
subform control to the link fields.

--
Duane Hookom
MS Access MVP

Northwind? I don't know what you mean.

The Order and Order Details table are related with the Sales Order
Number
being the primary and foreign keys respectively.

It is my understanding that data flows "downstream" so to speak thru
the
tables via the relationships. Is that not right? and if not, what
do I
do
to
make that happen? otherwise you'd be repeatedly entering the same
data.

:

What are you doing that makes you think the Order Number should be
going
to
the Order Details table? Are you using a form with a subform like
the
Northwind. mdb?

--
Duane Hookom
MS Access MVP

My data is not populating related tables. For instance, the
sales
order
number in the Orders table is not populating the sales order
field
in
the
Order Detail table. The order sequence of my tables is
Customer ->
Orders ->
Shipping -> Shipping Detail with trunks off of the Orders table
going
to
Order Detail and Profit. The sales order number is not going
past
the
Orders
table.

I am also getting Error 3101 (?) messages when I try to input
data
via
my
forms. Apparently I am entering data into the many side rather
than
the
one
side?

What am I doing wrong?
 
G

Guest

Can a form and a subform be linked by more than one control? For instance, in
my Order table there are two controls - sales order number and skids/parts
number and the same two are part of the Order Detail subform. The two are
related via the sales order number but I also need the skids/parts number
control in the subform to be populated from the order table entry. Is that
possible?

Duane Hookom said:
You can generally use forms with multiple subforms. Access isn't a
spreadsheet and allows much greater flexibility and functionality for
storing and reporting related data.

--
Duane Hookom
MS Access MVP

TechyTemp said:
Sorry. I didn't mean to confuse the issue. I had already set up forms
and
was trying to keep them w/o making too many changes. I had a meeting with
the
conversion team earlier this week and presented those forms so I was
hoping
to keep what I had but we're all learning here. I'll look to see if we
have
the Northwind. It looks, though, like I will have to start from scratch
and
set up several forms instead of two. We have a massive amount of data to
input as the excel spreadsheet file is corrupted. They're not going to
like
having to open several forms to enter data from just one line in
excel...access is hardly simple.



Duane Hookom said:
Whoa! I am way to slow to comprehend too much information at one time. I
mentioned a main form and subform with the Link Master and Child
properties
and you come back with a full schema, a 4-column list box, and a whole
lot
more.

You didn't provide the very basics of what I thought I had suggested. You
should search the samples in the Office installation directory in your
Program Files to see if you have the Northwind.mdb. This sample has much
of
the information set up the way you need.

If you can't find the Northwind, set up a single view form based on the
Orders table. Create a continuous subform based on the Order Details. Add
the subform to the Orders form and set the Link Master and Link Child
properties to [Sales Order Number].

BTW: You should avoid using spaces and symbols in field and other object
names ie: -%...
Also controls such as combo boxes and list boxes can be bound to a single
field, not multiple fields. If you are attempting to store values from
more
than one column of these controls, it generally suggests an un-normalized
table structure.

--
Duane Hookom
MS Access MVP

Ok....let me see if I've got this. If I have seven tables then I have
to
set
up an input form for each table?

I have seven tables: Customer -> Orders -> Shipping -> Shipping Detail
/ l \
Order Detail l Monthly Open
Orders
Profit
I know this is a lot of information but I'm dealing with some seriously
short time constraints. This is the field list description for each
table:
Customer: Customer ID, Customer Name, Customer Name Detail, Customer
Unit
Orders: Customer ID, Sales Order Number, Skids/Parts Number, Credit
Number,
Specialist Code
Order Detail: Sales Order Number, Skids/Parts Number, Skid Quantity,
Parts
Quantity, Quote Number, Subsequent Quote Number
Monthly Open Orders: Specialist Code, Customer ID, Customer Name,
Customer
Name Detail, Credit Number, Skid Quantity, Parts Quantity, Skid/Parts
Number,
Order Date, Sales Order Number, Promise Date, Explanation
Profit: Sales Order Number, Cost,Sales Price, Cost %, % Profit
Shipping: Invoice Number, Sales Order Number, Ship Date, Final
Destination
Shipping Detail: Invoice Number, Sales Order Number, Order Date,
Promised
Date, Shipped Date, Shipment:partial or Complete?

I set up Order Input Form Part I and Part II. Part I has text boxes
for
the
information from the customer table, a 4-column list box that I thought
would
populate the customer table controls but it won't, a subform for the
orders
table and another subform for the orders detail. The orders detail
though
did not populate completely. The Sales Order Number and the
Skids/Parts
Number didn't flow over from the Orders Table. Is that what you're
talking
about with regard to link master/child fields?

Part II contains controls for Sales Order Number, Invoice Number, Order
Date, Promised Date, Shipped Date, Partial or Complete?, Final
Destination,
Cost and Sales Price.

Do I need to completely revamp the input forms?
Should I add the fields from the Profit table to the Order Detail table
and
delete the Profit table?
I was trying to get all the input on two forms but in reality should I
have
three - customer input form, order input and lastly shipping input?
The Monthly Open Orders table may seem redundant but the warehouse can
look
at this information in datasheet view until I put together the reports.
How
do I make sure that this table is populated w/o having to enter data
twice?

I have a conversion team waiting on me to finish the data input testing
so
they can begin entering the actual data. Can you give me some feedback
on
this information and my questions?





:

Northwind.mdb is a sample Access application that generally gets
installed
when you install Office/Access.

In order to populate the detail records with a value from the Orders
table
you should create a main form based on the Orders table and a subform
based
on the Order Details table. Set the Link Master/Child properties of
the
subform control to the link fields.

--
Duane Hookom
MS Access MVP

Northwind? I don't know what you mean.

The Order and Order Details table are related with the Sales Order
Number
being the primary and foreign keys respectively.

It is my understanding that data flows "downstream" so to speak thru
the
tables via the relationships. Is that not right? and if not, what
do I
do
to
make that happen? otherwise you'd be repeatedly entering the same
data.

:

What are you doing that makes you think the Order Number should be
going
to
the Order Details table? Are you using a form with a subform like
the
Northwind. mdb?

--
Duane Hookom
MS Access MVP

My data is not populating related tables. For instance, the
sales
order
number in the Orders table is not populating the sales order
field
in
the
Order Detail table. The order sequence of my tables is
Customer ->
Orders ->
Shipping -> Shipping Detail with trunks off of the Orders table
going
to
Order Detail and Profit. The sales order number is not going
past
the
Orders
table.

I am also getting Error 3101 (?) messages when I try to input
data
via
my
forms. Apparently I am entering data into the many side rather
than
the
one
side?

What am I doing wrong?
 
J

John Vinson

Can a form and a subform be linked by more than one control? For instance, in
my Order table there are two controls - sales order number and skids/parts
number and the same two are part of the Order Detail subform. The two are
related via the sales order number but I also need the skids/parts number
control in the subform to be populated from the order table entry. Is that
possible?

Yes. The Master Link Field and the Child Link Field can consist of up
to ten fieldnames (or control names from the main form for the
Master), separated by semicolons.

John W. Vinson[MVP]
 
G

Guest

How do I get to the link master/child fields? I have clicked on properties
for the form, the subform and the individual controls and don't see the
options.
 
J

John Vinson

How do I get to the link master/child fields? I have clicked on properties
for the form, the subform and the individual controls and don't see the
options.

The Subform Control is the "box" on the main form which contains the
subform. That's what you need to select. To do so, click the *edge* of
the subform in form design view, or use the dropdown list in the form
design toolbar to select the subform control by name.

John W. Vinson[MVP]
 
G

Guest

Thanks. I found it.

New question: I input data into the data input form but it didn't populate
the table it was supposed to. I've been looking at these forms for several
days. It's probably right in front of me but what should I check?
 
D

Duane Hookom

Check the Record Source property of your form. If this is ok, check the
Control Source property of your bound controls.
 
G

Guest

I've discovered another glitch....I need for the sales order number to allow
duplicates even though it is a primary source in a couple of relationships.
One sales order number may have part numbers for one account but several
departments. These sales order numbers are assigned by a global system used
by the entire company so there's no deviation from that.

I can set up the relationship but I can't enforce referential integrity. I
get a 'no unique index found' response.

Is there anything I can do?
 
D

Duane Hookom

I am now totally lost. It seems that your issue is no longer what it started
out as. You might need to start a new thread with complete specifications
and significant information.
 
G

Guest

I have gotten most of my master and child links to work but I have one that
simply is not working. There are 3 master child links. The first two work
just fine but the third link is not populating the child field and won't let
me hand key it in either.

What should I do?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top