Create a copy of a field data.

V

Victor Torres

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...
 
R

Rick B

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
 
Top