How can I do this operation automaticly by command button:

1

1aae

How can I do this operation automatically by command button:
select column (ColumnNameA)
copy column (ColumnNameA)
select column (ColumnNameB)
paste in column (ColumnNameB)
is this possible
 
J

John Spencer (MVP)

The easy way would be to use an update query.

UPDATE YourTable
Set FieldB = FieldA
 
1

1aae

Thank you very much for your help and answer
It work correct and excellent thank you
but I want to ask you another question
If FieldA is expression in a subform.
Is there any way to copy the Value of FieldA (Expression) To FieldB (Field)
Thank you
 

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