how to copy cell contents from one workseet to another worksheet?

J

James

I would like to copy info from a cell in one worksheet to a cell in another
worksheet in the same file. The first worksheet is the DETAIL info and the
second worksheet is the SUMMARY info.

Thanx
 
T

Tom Ogilvy

Assume you are looking for a coding solution as this would be trivial
manually:

Worksheets("Summary").Range("A1").Value = _
worksheets("Detail").Range("B9").Value
 
Top