CrAzIcRaCkEr
IS-IT--Management
Anybody see anything wrong with this SQL?
(Both dummyBLID and Me.BLID.Value variables are integers.)
DoCmd.RunSQL ("INSERT INTO tblApplications (BLID, appName, VRM, CISOcomments, SOX, lastRiskAssess, busImpact, GLBAHigh, catID, ISOquarterly, authorizer, administrator) SELECT " & dummyBLID & ", appName, VRM, CISOcomments, SOX, lastRiskAssess, busImpact, GLBAHigh, catID, ISOquarterly, authorizer, administrator WHERE BLID = " & Me.BLID.Value & ";")
This query should be taking certain recordsets that match the Me.BLID.Value and make a complete duplicate except for one variable...it should replace the BLID field with the dummyBLID variable.
Thanks In Advance!
Cc
(Both dummyBLID and Me.BLID.Value variables are integers.)
DoCmd.RunSQL ("INSERT INTO tblApplications (BLID, appName, VRM, CISOcomments, SOX, lastRiskAssess, busImpact, GLBAHigh, catID, ISOquarterly, authorizer, administrator) SELECT " & dummyBLID & ", appName, VRM, CISOcomments, SOX, lastRiskAssess, busImpact, GLBAHigh, catID, ISOquarterly, authorizer, administrator WHERE BLID = " & Me.BLID.Value & ";")
This query should be taking certain recordsets that match the Me.BLID.Value and make a complete duplicate except for one variable...it should replace the BLID field with the dummyBLID variable.
Thanks In Advance!
Cc