I
ifoundgoldbug
UPDATE [location Query]
SET [location Query]![Location] = IIf ( [location Query]![updateme] =
True , Forms![Series]![NewLocation] AND [location Query]![updateme] =
False , [location Query]![Location])
FROM [location Query];
as for what I am trying to do. i have a true false column of data for
every record in my database. Each record in this instance is a file
and it's location IE File1 is on c:\file1 and file2 is on D:\file2 now
lets say that I want to burn those 2 files off onto disk and delete
them from my hdds. since the location has changed i would like to be
able to go through all of the files that I am going to burn off and
check updateme then put thier new location (probably a disk number) in
the text box Forms![Series]![NewLocation] and update all of those
entries new locations then set the update me back to false.
apologies for the length
thank you very much for your time
SET [location Query]![Location] = IIf ( [location Query]![updateme] =
True , Forms![Series]![NewLocation] AND [location Query]![updateme] =
False , [location Query]![Location])
FROM [location Query];
as for what I am trying to do. i have a true false column of data for
every record in my database. Each record in this instance is a file
and it's location IE File1 is on c:\file1 and file2 is on D:\file2 now
lets say that I want to burn those 2 files off onto disk and delete
them from my hdds. since the location has changed i would like to be
able to go through all of the files that I am going to burn off and
check updateme then put thier new location (probably a disk number) in
the text box Forms![Series]![NewLocation] and update all of those
entries new locations then set the update me back to false.
apologies for the length
thank you very much for your time