Any help getting started would be appreciated. Thanks for the help....
--
JT
--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com
"JT" <J...@discussions.microsoft.com> wrote in message
news:2C92B9C3-5D21-4687...@microsoft.com...
The description of your table seems strange. You said there are two fields
in the table, "Group" and "Branch". Each *record* in the table therefore
contains these two fields, so saying "There is a single record in this field"
makes no sense.
What data is the table supposed to contain? If you want to track what
version number each Branch/Group has, then you a third field in the table -
VersionNumber.
You can update the table with SQL, for example:
mySQL="UPDATE MyTable set VersionNumber = " & NewVersionNumber &
" WHERE Branch = '" & BranchName & "' AND Group = '" & GroupName & "'"
db.execute SQL
Please clarify if I don't have my assumptions right.
HTH
John
--
Message posted via http://www.accessmonster.com