Hello,
I have two tables,
Clients: [Client ID] [Location].....
Followup: [Client ID] [Location] [Date] [Results]
I would like to mass update by inserting new records in followup based on [Location] in Clients. That is, if Location is = "Mumbai" insert a new record into Followup, containing each Client ID and Location in addition to a [Date] and [Results], the date and results will be the same for each. So my end result in Followup will be like the following
[ Client ID] [Location][Date][Results]
(01), (Mumbai), (2008-03-04), (Positive)
(07), (Mumbai), (2008-03-04), (Positive)
(11), (Mumbai), (2008-03-04), (Positive)
(15), (Mumbai), (2008-03-04), (Positive)
(22), (Mumbai), (2008-03-04), (Positive)
(22), (Mumbai), (2008-03-04), (Positive)
(24), (Mumbai), (2008-03-04), (Positive)
(27), (Mumbai), (2008-03-04), (Positive)
(31), (Mumbai), (2008-03-04), (Positive)
(38), (Mumbai), (2008-03-04), (Positive)
(50), (Mumbai), (2008-03-04), (Positive)
Any ideas?
Thanks
JAS
I have two tables,
Clients: [Client ID] [Location].....
Followup: [Client ID] [Location] [Date] [Results]
I would like to mass update by inserting new records in followup based on [Location] in Clients. That is, if Location is = "Mumbai" insert a new record into Followup, containing each Client ID and Location in addition to a [Date] and [Results], the date and results will be the same for each. So my end result in Followup will be like the following
[ Client ID] [Location][Date][Results]
(01), (Mumbai), (2008-03-04), (Positive)
(07), (Mumbai), (2008-03-04), (Positive)
(11), (Mumbai), (2008-03-04), (Positive)
(15), (Mumbai), (2008-03-04), (Positive)
(22), (Mumbai), (2008-03-04), (Positive)
(22), (Mumbai), (2008-03-04), (Positive)
(24), (Mumbai), (2008-03-04), (Positive)
(27), (Mumbai), (2008-03-04), (Positive)
(31), (Mumbai), (2008-03-04), (Positive)
(38), (Mumbai), (2008-03-04), (Positive)
(50), (Mumbai), (2008-03-04), (Positive)
Any ideas?
Thanks
JAS
Comment