How do I make a cell's contents equal to another cell's contents with macro program?

M

mgmcdevitt

I am writing macros that are run when you select an item from a list
Then the macro inputs a particular cell’s contents into another cell
The problem is the recording function of macro creates programming tha
causes serious problems in spreadsheet if I add or delete cells.

Here is an example of a macro:
Sub AZWagePump3()
'
' AZWagePump3 Macro
' Macro recorded 8/19/2005 by Systems Administrator
'

Range("B25").Select
ActiveCell.FormulaR1C1 = "=R[181]C"
Range("C25").Select
ActiveCell.FormulaR1C1 = "=R[181]C"

End Sub


I am need a program that in essence is C4 = D4 so that what ever cell
change around it the macro still functions correctly
 
G

Gary''s Student

If you are going to add/remove cells, rows or columns, you should assign
named ranges for your copy/paste targets. That way you can name them and
forget them.

ToPlace.value = FromPlace.value
 

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