Create a copy of a field data.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm trying to create a formula or a macro that copy the data from one field
to another... ej: [Field1] in x record is 2.34 and [Field2] is blank. i
need a formula to put in a botton so when I press it, it copy the 2.34 from
field1 to the second field. So I then have [Field1] 2.34 and [Field2] 2.34.
Any help please...
 
Why would you want to duplicate data in this manner?

Just put code in the click event like...

If IsNull([field2]) then
Field2=field1
end if
 

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

Similar Threads


Back
Top