How to transfer calculated value into table field

G

Guest

I have a calulated value using VB code called num this number needs to be
put directly into a table called ID num. What is the VB code to do this?
I am not really sure on the format how to reference a table to put the value
that I calculated to put it into the field.
 
B

Brendan Reynolds

If you are updating the value of an existing record ...

Dim strSQL As String
strSQL = "UPDATE YourTableNameHere SET YourFieldNameHere = " & _
YourVariableNameHere & _
" WHERE " & _
criteria that selects the correct record to be updated here
CurrentDb.Execute strSQL

If you're adding a new record, change the SQL statement as follows ...

strSQL = "INSERT INTO YourTableNameHere (YourFieldNameHere) Values (" &
YourVariableNameHere & ")"

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.
 
G

Guest

Hereis what I did with my table names and values. The table I want to put it
in is called Genetic ID num. The value that I want inserted is RandomNum
into geneticIDnum.
It is giving me a compile error right here "WHERE"

Also what do you mean by criteria that selects the correct record to be
updated.
Do I even have to put the WHERE in if I am not going to update anything I am
just going to put the RandomNum into that field?

strSQL = "INSERT INTO Table: Genetic ID num (geneticIDnum) Values (" &
RandomNum & ")" " WHERE " & _
criteria that selects the correct record to be updated here
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top