472,780 Members | 1,771 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,780 software developers and data experts.

Updating rows in a table - HELP, I'm beating my head against the wall.

Here's the situation:

I'm trying to use an update query to copy data from one row to another.
Here is the situation:

I have 5 companies that are linked to each other. I need to show all 5
companies on a form. 3 of the companies have common employees. I have a
table that looks like this:
Row ID Company Common Company Common EEs (checkboxes)
1 A B
2 A C
3 A D
4 A E
5 B A
6 B C
7 B D
8 B E
9 C A
10 C B
11 C D
12 C E
13 D A
14 D B
15 D C
16 D E

and so on.

If I were to look at Company A in a form, in the form header I have:

Company A

In the detail section (as a continuous form) I show it's linked companies:

Company B
Company C
Company D
Company E

With a checkbox next to each name in the detail section.

In this scenario, company B and D have common employees with company A. So,
when you check the box next to B, I have a query that will check the row
with Company A and Company B (row 1) and the row with Company B and Company
A (row 5). The same with Company A and Company D. When you check the box
next to Company D, the update query with update row 3 (A and D) and row 13
(D and A).

So, now company A and company B have the same info. Company A and company D
have the same info. BUT, company B and company D (rows 7 and 14) also need
to be checked and this isn't happening. How do I update those rows??

Thanks in advance,

Laura
Nov 13 '05 #1
4 2210
Laura, this sounds like a maintenance nightmare!

You need Access to calculate this for you at runtime, and you could achieve
that if you had these 3 tables:

Company table:
CompanyID primary key

Employee table:
EmployeeID primary key

CompanyEmployee table:
CompanyID foreign key to Company.CompanyID
EmployeeID foreign key to Employee.EmployeeID
Now create two queries:

1. Create a query into the CompanyEmployee table.
Drag a 2nd copy of the CompanyEmployee table into the grid.
Access will alias it as CompanyEmployee_1.

2. In the upper pane, create a join between CompanyEmployee.EmployeeID and
CompanyEmployee_1.EmployeeID. If you see a join between
CompanyEmployee.CompanyID and CompanyEmployee_1.CompanyID, delete that line.

3. Drag CompanyEmployee.CompanyID into the query grid.
Type this into the Field row:
CommonCompanyID:[CompanyEmployee_1].[CompanyID]
In the Criteria row under this field, enter:
<> CompanyEmployee.CompanyID.

4. Save the query with the name qryEmployeeBoth. Close.
This query shows each matching company that has shared employees, and lists
who they are.
1. Create a new query into the Company table and also the query you just
saved. If you don't see a line joining Company.CompanyID to qryEmployeeID,
then drag the one field onto the other. Double-click the join line. Access
pops up a dialog offereing 3 choices. Choose the one that says:
All records from Company, and any matches from ...

2. Depress the Totals button on the toobar.
Access adds a Total row to the grid.

3. Drag Company.CompanyID and qryEmployeeBoth.CommonCompanyID into the grid.
Accept Group By under these fields.

4. Drag qryEmployeeBoth.EmployeeID into the grid. In the Total row, choose
Count.

This query lists every company matched against any other companies that have
shared employees, and the number of shared employees.

This willbe the SQL for the 2 queries:
SELECT CompanyEmployee.CompanyID, CompanyEmployee.EmployeeID,
CompanyEmployee_1.CompanyID AS CommonCompanyID
FROM CompanyEmployee INNER JOIN CompanyEmployee AS
CompanyEmployee_1 ON CompanyEmployee.EmployeeID =
CompanyEmployee_1.EmployeeID
WHERE CompanyEmployee_1.CompanyID <> [CompanyEmployee].[CompanyID];
SELECT Company.CompanyID, qryEmployeeBoth.CommonCompanyID,
Count(qryEmployeeBoth.EmployeeID) AS CountOfEmployeeID
FROM Company LEFT JOIN qryEmployeeBoth
ON Company.CompanyID = qryEmployeeBoth.CompanyID
GROUP BY Company.CompanyID, qryEmployeeBoth.CommonCompanyID;

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:fO*****************@fe1.texas.rr.com...
Here's the situation:

I'm trying to use an update query to copy data from one row to another.
Here is the situation:

I have 5 companies that are linked to each other. I need to show all 5
companies on a form. 3 of the companies have common employees. I have a
table that looks like this:
Row ID Company Common Company Common EEs (checkboxes)
1 A B
2 A C
3 A D
4 A E
5 B A
6 B C
7 B D
8 B E
9 C A
10 C B
11 C D
12 C E
13 D A
14 D B
15 D C
16 D E

and so on.

If I were to look at Company A in a form, in the form header I have:

Company A

In the detail section (as a continuous form) I show it's linked companies:

Company B
Company C
Company D
Company E

With a checkbox next to each name in the detail section.

In this scenario, company B and D have common employees with company A.
So, when you check the box next to B, I have a query that will check the
row with Company A and Company B (row 1) and the row with Company B and
Company A (row 5). The same with Company A and Company D. When you check
the box next to Company D, the update query with update row 3 (A and D)
and row 13 (D and A).

So, now company A and company B have the same info. Company A and company
D have the same info. BUT, company B and company D (rows 7 and 14) also
need to be checked and this isn't happening. How do I update those rows??

Thanks in advance,

Laura

Nov 13 '05 #2
There isn't a need for an employees table. I just need to know if common
employees may exist between the two companies. I don't need a list of them.

Here is the actual update query that occurs when the check box is checked:

UPDATE tblCombinedPlans SET tblCombinedPlans.CommonEEs =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[CommonEEs], tblCombinedPlans.Census =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[Census]
WHERE (((tblCombinedPlans.GA_Number)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_GA_Number]) AND
((tblCombinedPlans.PlanNum)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PlanNum]) AND
((tblCombinedPlans.PYE)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PYE]) AND
((tblCombinedPlans.C_GA_Number)=[forms]![frmGroups]![GA_Number]) AND
((tblCombinedPlans.C_PlanNum)=[forms]![frmGroups]![PlanNum]) AND
((tblCombinedPlans.C_PYE)=[forms]![frmGroups]![PYE]));

The fields on the table are:

These three denote the company
GA_Number
PlanNum
PYE

These three denote the linked or 'common' company.
C_GA_Number
C_PlanNum
C_PYE

These are the two checkboxes.
CommonEEs
Census

As you can see from the query above, I made GA_Number = C_GA_Number, etc.
This allowed me to reverse the values.

I was thinking that maybe I should use vb. The table is relatively static
except for the 2 checkboxes. I haven't worked it out completely yet, but I
think I could store the 6 values of a record, then reverse them, and create
a dynamic update query.

Do you think that would work?

Thanks,
Laura

P.S. I love, love, love your website. I found it more than 6 years ago when
I was forced to teach myself Access and couldn't get my mind around how to
do a dynamic dlookup. You are wonderful at explaining things. Thank ypu so
much for all the help over the years.
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:41**********************@per-qv1-newsreader-01.iinet.net.au...
Laura, this sounds like a maintenance nightmare!

You need Access to calculate this for you at runtime, and you could
achieve that if you had these 3 tables:

Company table:
CompanyID primary key

Employee table:
EmployeeID primary key

CompanyEmployee table:
CompanyID foreign key to Company.CompanyID
EmployeeID foreign key to Employee.EmployeeID
Now create two queries:

1. Create a query into the CompanyEmployee table.
Drag a 2nd copy of the CompanyEmployee table into the grid.
Access will alias it as CompanyEmployee_1.

2. In the upper pane, create a join between CompanyEmployee.EmployeeID and
CompanyEmployee_1.EmployeeID. If you see a join between
CompanyEmployee.CompanyID and CompanyEmployee_1.CompanyID, delete that
line.

3. Drag CompanyEmployee.CompanyID into the query grid.
Type this into the Field row:
CommonCompanyID:[CompanyEmployee_1].[CompanyID]
In the Criteria row under this field, enter:
<> CompanyEmployee.CompanyID.

4. Save the query with the name qryEmployeeBoth. Close.
This query shows each matching company that has shared employees, and
lists who they are.
1. Create a new query into the Company table and also the query you just
saved. If you don't see a line joining Company.CompanyID to qryEmployeeID,
then drag the one field onto the other. Double-click the join line. Access
pops up a dialog offereing 3 choices. Choose the one that says:
All records from Company, and any matches from ...

2. Depress the Totals button on the toobar.
Access adds a Total row to the grid.

3. Drag Company.CompanyID and qryEmployeeBoth.CommonCompanyID into the
grid. Accept Group By under these fields.

4. Drag qryEmployeeBoth.EmployeeID into the grid. In the Total row, choose
Count.

This query lists every company matched against any other companies that
have shared employees, and the number of shared employees.

This willbe the SQL for the 2 queries:
SELECT CompanyEmployee.CompanyID, CompanyEmployee.EmployeeID,
CompanyEmployee_1.CompanyID AS CommonCompanyID
FROM CompanyEmployee INNER JOIN CompanyEmployee AS
CompanyEmployee_1 ON CompanyEmployee.EmployeeID =
CompanyEmployee_1.EmployeeID
WHERE CompanyEmployee_1.CompanyID <> [CompanyEmployee].[CompanyID];
SELECT Company.CompanyID, qryEmployeeBoth.CommonCompanyID,
Count(qryEmployeeBoth.EmployeeID) AS CountOfEmployeeID
FROM Company LEFT JOIN qryEmployeeBoth
ON Company.CompanyID = qryEmployeeBoth.CompanyID
GROUP BY Company.CompanyID, qryEmployeeBoth.CommonCompanyID;

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:fO*****************@fe1.texas.rr.com...
Here's the situation:

I'm trying to use an update query to copy data from one row to another.
Here is the situation:

I have 5 companies that are linked to each other. I need to show all 5
companies on a form. 3 of the companies have common employees. I have a
table that looks like this:
Row ID Company Common Company Common EEs (checkboxes)
1 A B
2 A C
3 A D
4 A E
5 B A
6 B C
7 B D
8 B E
9 C A
10 C B
11 C D
12 C E
13 D A
14 D B
15 D C
16 D E

and so on.

If I were to look at Company A in a form, in the form header I have:

Company A

In the detail section (as a continuous form) I show it's linked
companies:

Company B
Company C
Company D
Company E

With a checkbox next to each name in the detail section.

In this scenario, company B and D have common employees with company A.
So, when you check the box next to B, I have a query that will check the
row with Company A and Company B (row 1) and the row with Company B and
Company A (row 5). The same with Company A and Company D. When you
check the box next to Company D, the update query with update row 3 (A
and D) and row 13 (D and A).

So, now company A and company B have the same info. Company A and
company D have the same info. BUT, company B and company D (rows 7 and
14) also need to be checked and this isn't happening. How do I update
those rows??

Thanks in advance,

Laura


Nov 13 '05 #3
Laura, what bothers me is the non-normalized data structure, where you have
one record dependent on another. That *is* the problem that you are trying
to solve by forcing the update of the other record when one changes. To me,
that approach would be unacceptable, e.g. if the write fails for some reason
(e.g. another user is editing that record), your database gradually becomes
more and more wrong over time.

Some kind of junction table(s) between 2 instances of the company table
seems to be a more reliable approach.

Thanks for the comments re the website. Like many of the regular
contributors here, I enjoy empowering people to achieve things for
themselves.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:0R******************@fe1.texas.rr.com...
There isn't a need for an employees table. I just need to know if common
employees may exist between the two companies. I don't need a list of
them.

Here is the actual update query that occurs when the check box is checked:

UPDATE tblCombinedPlans SET tblCombinedPlans.CommonEEs =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[CommonEEs], tblCombinedPlans.Census =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[Census]
WHERE (((tblCombinedPlans.GA_Number)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_GA_Number]) AND
((tblCombinedPlans.PlanNum)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PlanNum]) AND
((tblCombinedPlans.PYE)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PYE]) AND
((tblCombinedPlans.C_GA_Number)=[forms]![frmGroups]![GA_Number]) AND
((tblCombinedPlans.C_PlanNum)=[forms]![frmGroups]![PlanNum]) AND
((tblCombinedPlans.C_PYE)=[forms]![frmGroups]![PYE]));

The fields on the table are:

These three denote the company
GA_Number
PlanNum
PYE

These three denote the linked or 'common' company.
C_GA_Number
C_PlanNum
C_PYE

These are the two checkboxes.
CommonEEs
Census

As you can see from the query above, I made GA_Number = C_GA_Number, etc.
This allowed me to reverse the values.

I was thinking that maybe I should use vb. The table is relatively static
except for the 2 checkboxes. I haven't worked it out completely yet, but
I think I could store the 6 values of a record, then reverse them, and
create a dynamic update query.

Do you think that would work?

Thanks,
Laura

P.S. I love, love, love your website. I found it more than 6 years ago
when I was forced to teach myself Access and couldn't get my mind around
how to do a dynamic dlookup. You are wonderful at explaining things.
Thank ypu so much for all the help over the years.
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:41**********************@per-qv1-newsreader-01.iinet.net.au...
Laura, this sounds like a maintenance nightmare!

You need Access to calculate this for you at runtime, and you could
achieve that if you had these 3 tables:

Company table:
CompanyID primary key

Employee table:
EmployeeID primary key

CompanyEmployee table:
CompanyID foreign key to Company.CompanyID
EmployeeID foreign key to Employee.EmployeeID
Now create two queries:

1. Create a query into the CompanyEmployee table.
Drag a 2nd copy of the CompanyEmployee table into the grid.
Access will alias it as CompanyEmployee_1.

2. In the upper pane, create a join between CompanyEmployee.EmployeeID
and CompanyEmployee_1.EmployeeID. If you see a join between
CompanyEmployee.CompanyID and CompanyEmployee_1.CompanyID, delete that
line.

3. Drag CompanyEmployee.CompanyID into the query grid.
Type this into the Field row:
CommonCompanyID:[CompanyEmployee_1].[CompanyID]
In the Criteria row under this field, enter:
<> CompanyEmployee.CompanyID.

4. Save the query with the name qryEmployeeBoth. Close.
This query shows each matching company that has shared employees, and
lists who they are.
1. Create a new query into the Company table and also the query you just
saved. If you don't see a line joining Company.CompanyID to
qryEmployeeID, then drag the one field onto the other. Double-click the
join line. Access pops up a dialog offereing 3 choices. Choose the one
that says:
All records from Company, and any matches from ...

2. Depress the Totals button on the toobar.
Access adds a Total row to the grid.

3. Drag Company.CompanyID and qryEmployeeBoth.CommonCompanyID into the
grid. Accept Group By under these fields.

4. Drag qryEmployeeBoth.EmployeeID into the grid. In the Total row,
choose Count.

This query lists every company matched against any other companies that
have shared employees, and the number of shared employees.

This willbe the SQL for the 2 queries:
SELECT CompanyEmployee.CompanyID, CompanyEmployee.EmployeeID,
CompanyEmployee_1.CompanyID AS CommonCompanyID
FROM CompanyEmployee INNER JOIN CompanyEmployee AS
CompanyEmployee_1 ON CompanyEmployee.EmployeeID =
CompanyEmployee_1.EmployeeID
WHERE CompanyEmployee_1.CompanyID <> [CompanyEmployee].[CompanyID];
SELECT Company.CompanyID, qryEmployeeBoth.CommonCompanyID,
Count(qryEmployeeBoth.EmployeeID) AS CountOfEmployeeID
FROM Company LEFT JOIN qryEmployeeBoth
ON Company.CompanyID = qryEmployeeBoth.CompanyID
GROUP BY Company.CompanyID, qryEmployeeBoth.CommonCompanyID;
"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:fO*****************@fe1.texas.rr.com...
Here's the situation:

I'm trying to use an update query to copy data from one row to another.
Here is the situation:

I have 5 companies that are linked to each other. I need to show all 5
companies on a form. 3 of the companies have common employees. I have a
table that looks like this:
Row ID Company Common Company Common EEs (checkboxes)
1 A B
2 A C
3 A D
4 A E
5 B A
6 B C
7 B D
8 B E
9 C A
10 C B
11 C D
12 C E
13 D A
14 D B
15 D C
16 D E

and so on.

If I were to look at Company A in a form, in the form header I have:

Company A

In the detail section (as a continuous form) I show it's linked
companies:

Company B
Company C
Company D
Company E

With a checkbox next to each name in the detail section.

In this scenario, company B and D have common employees with company A.
So, when you check the box next to B, I have a query that will check the
row with Company A and Company B (row 1) and the row with Company B and
Company A (row 5). The same with Company A and Company D. When you
check the box next to Company D, the update query with update row 3 (A
and D) and row 13 (D and A).

So, now company A and company B have the same info. Company A and
company D have the same info. BUT, company B and company D (rows 7 and
14) also need to be checked and this isn't happening. How do I update
those rows??

Thanks in advance,

Laura

Nov 13 '05 #4
MA

"Allen Browne" <Al*********@SeeSig.Invalid> ha scritto nel messaggio
news:41**********************@per-qv1-newsreader-01.iinet.net.au...
Laura, what bothers me is the non-normalized data structure, where you have one record dependent on another. That *is* the problem Oh J thought the the problem was be or not to be!!!
Damn J've to study better Access...
that you are trying
to solve by forcing the update of the other record when one changes. To me, that approach would be unacceptable, e.g. if the write fails for some reason (e.g. another user is editing that record), your database gradually becomes more and more wrong over time.

Some kind of junction table(s) between 2 instances of the company table
seems to be a more reliable approach.

Thanks for the comments re the website. Like many of the regular
contributors here, I enjoy empowering people to achieve things for
themselves.
Sorry for jocking, J'm completly agree with you answer
MAssimiliano

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:0R******************@fe1.texas.rr.com...
There isn't a need for an employees table. I just need to know if common employees may exist between the two companies. I don't need a list of
them.

Here is the actual update query that occurs when the check box is checked:
UPDATE tblCombinedPlans SET tblCombinedPlans.CommonEEs =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[CommonEEs], tblCombinedPlans.Census =
[Forms]![frmgroups].[Subform BasicCase].[Form].[AddlPlans
Subform].[Form].[Census]
WHERE (((tblCombinedPlans.GA_Number)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_GA_Number]) AND
((tblCombinedPlans.PlanNum)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PlanNum]) AND
((tblCombinedPlans.PYE)=[Forms]![frmgroups].[Subform
BasicCase].[Form].[AddlPlans Subform].[Form].[C_PYE]) AND
((tblCombinedPlans.C_GA_Number)=[forms]![frmGroups]![GA_Number]) AND
((tblCombinedPlans.C_PlanNum)=[forms]![frmGroups]![PlanNum]) AND
((tblCombinedPlans.C_PYE)=[forms]![frmGroups]![PYE]));

The fields on the table are:

These three denote the company
GA_Number
PlanNum
PYE

These three denote the linked or 'common' company.
C_GA_Number
C_PlanNum
C_PYE

These are the two checkboxes.
CommonEEs
Census

As you can see from the query above, I made GA_Number = C_GA_Number, etc. This allowed me to reverse the values.

I was thinking that maybe I should use vb. The table is relatively static except for the 2 checkboxes. I haven't worked it out completely yet, but I think I could store the 6 values of a record, then reverse them, and
create a dynamic update query.

Do you think that would work?

Thanks,
Laura

P.S. I love, love, love your website. I found it more than 6 years ago
when I was forced to teach myself Access and couldn't get my mind around
how to do a dynamic dlookup. You are wonderful at explaining things.
Thank ypu so much for all the help over the years.
"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:41**********************@per-qv1-newsreader-01.iinet.net.au...
Laura, this sounds like a maintenance nightmare!

You need Access to calculate this for you at runtime, and you could
achieve that if you had these 3 tables:

Company table:
CompanyID primary key

Employee table:
EmployeeID primary key

CompanyEmployee table:
CompanyID foreign key to Company.CompanyID
EmployeeID foreign key to Employee.EmployeeID
Now create two queries:

1. Create a query into the CompanyEmployee table.
Drag a 2nd copy of the CompanyEmployee table into the grid.
Access will alias it as CompanyEmployee_1.

2. In the upper pane, create a join between CompanyEmployee.EmployeeID
and CompanyEmployee_1.EmployeeID. If you see a join between
CompanyEmployee.CompanyID and CompanyEmployee_1.CompanyID, delete that
line.

3. Drag CompanyEmployee.CompanyID into the query grid.
Type this into the Field row:
CommonCompanyID:[CompanyEmployee_1].[CompanyID]
In the Criteria row under this field, enter:
<> CompanyEmployee.CompanyID.

4. Save the query with the name qryEmployeeBoth. Close.
This query shows each matching company that has shared employees, and
lists who they are.
1. Create a new query into the Company table and also the query you just saved. If you don't see a line joining Company.CompanyID to
qryEmployeeID, then drag the one field onto the other. Double-click the
join line. Access pops up a dialog offereing 3 choices. Choose the one
that says:
All records from Company, and any matches from ...

2. Depress the Totals button on the toobar.
Access adds a Total row to the grid.

3. Drag Company.CompanyID and qryEmployeeBoth.CommonCompanyID into the
grid. Accept Group By under these fields.

4. Drag qryEmployeeBoth.EmployeeID into the grid. In the Total row,
choose Count.

This query lists every company matched against any other companies that
have shared employees, and the number of shared employees.

This willbe the SQL for the 2 queries:
SELECT CompanyEmployee.CompanyID, CompanyEmployee.EmployeeID,
CompanyEmployee_1.CompanyID AS CommonCompanyID
FROM CompanyEmployee INNER JOIN CompanyEmployee AS
CompanyEmployee_1 ON CompanyEmployee.EmployeeID =
CompanyEmployee_1.EmployeeID
WHERE CompanyEmployee_1.CompanyID <> [CompanyEmployee].[CompanyID];
SELECT Company.CompanyID, qryEmployeeBoth.CommonCompanyID,
Count(qryEmployeeBoth.EmployeeID) AS CountOfEmployeeID
FROM Company LEFT JOIN qryEmployeeBoth
ON Company.CompanyID = qryEmployeeBoth.CompanyID
GROUP BY Company.CompanyID, qryEmployeeBoth.CommonCompanyID;
"Laura" <musicloverlch@(removethis)yahoo.com> wrote in message
news:fO*****************@fe1.texas.rr.com...
Here's the situation:

I'm trying to use an update query to copy data from one row to another. Here is the situation:

I have 5 companies that are linked to each other. I need to show all 5 companies on a form. 3 of the companies have common employees. I have a table that looks like this:
Row ID Company Common Company Common EEs (checkboxes)
1 A B
2 A C
3 A D
4 A E
5 B A
6 B C
7 B D
8 B E
9 C A
10 C B
11 C D
12 C E
13 D A
14 D B
15 D C
16 D E

and so on.

If I were to look at Company A in a form, in the form header I have:

Company A

In the detail section (as a continuous form) I show it's linked
companies:

Company B
Company C
Company D
Company E

With a checkbox next to each name in the detail section.

In this scenario, company B and D have common employees with company A. So, when you check the box next to B, I have a query that will check the row with Company A and Company B (row 1) and the row with Company B and Company A (row 5). The same with Company A and Company D. When you
check the box next to Company D, the update query with update row 3 (A
and D) and row 13 (D and A).

So, now company A and company B have the same info. Company A and
company D have the same info. BUT, company B and company D (rows 7 and 14) also need to be checked and this isn't happening. How do I update
those rows??

Thanks in advance,

Laura


Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Bob Kaku | last post by:
I'm trying to create a text editing and updating capability to help someone who wants to maintain content on a web page without having to know any HTML or use a web authoring tool and FTP'ng the...
3
by: Robert Nolan | last post by:
This subject is probably simple to the readers, but I must be having one hell of a mental block cause I am beating my head against a wall. I need to create a simple folder tree that is about 3...
6
by: Allan | last post by:
Ok, I got some good advise. I re-wrote the program and now I'm down to only 1 error. Below is my code and my error. Any ideas what it is? #include <iostream> using std::cout; using std::cin;...
1
by: Ron | last post by:
I have a pre-printed form that I've basically duplicated in Access 2000 with the form wizards. It uses a main form for the basic info on a client, then a subform for the transaction lines. I've...
10
by: Donald French | last post by:
I have posted this before and got n real help. I have been beating my head against the wall over this one. Everytime I try to create a new web application I get this message. I have done the...
5
by: Jeremy | last post by:
This is a variation on the last 2 unresolved questions I've posted. Having removed the "required" attribute from a field that was causing trouble, I'm finding that my dataAdapter update gets...
1
by: Jozef | last post by:
HELP! Hi Folks, I'm having trouble referencing these public variables, and I'm not sure why. I use the code below to set open a connection to a database. The variables are public variables...
2
by: Muzzy | last post by:
Hi, I've used information on these newsgroups to build many pages. So I thought that now that I have my script working (something that I've been working on for about a week), I should post it so...
28
by: jverri01 | last post by:
First, I am relatively new to working with variables. Most of my experience has been with interface design. i am using ACCESS ver. 2003, running in Windows XP. Second, I spent an hour searching...
0
linyimin
by: linyimin | last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
0
by: Taofi | last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same This are my field names ID, Budgeted, Actual, Status and Differences ...
14
DJRhino1175
by: DJRhino1175 | last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this - If...
0
by: Rina0 | last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
5
by: DJRhino | last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer) If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _ 310030356 Or 310030359 Or 310030362 Or...
0
by: lllomh | last post by:
Define the method first this.state = { buttonBackgroundColor: 'green', isBlinking: false, // A new status is added to identify whether the button is blinking or not } autoStart=()=>{
0
by: lllomh | last post by:
How does React native implement an English player?
0
by: Mushico | last post by:
How to calculate date of retirement from date of birth
2
by: DJRhino | last post by:
Was curious if anyone else was having this same issue or not.... I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.