473,385 Members | 1,824 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 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 2259
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
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.