You (almost) never need to Activate or Select anything in Excel/VBA. Just
reference the cell directly:
Dim V As Variant
V = Worksheets("SomeSheet").Range("A10").Value
Worksheets("SomeOtherSheet").Range("B20").Value = V
or, as a one liner
Worksheets("SomeOtherSheet").Range("B20").Value = _
Worksheets("SomeSheet").Range("A10").Value

Signature
Cordially,
Chip Pearson
Microsoft MVP - Excel, 10 Years
Pearson Software Consulting
www.cpearson.com
(email on the web site)
> Hi,
> I'm trying to make a nice user interface on one worksheet. When I access
[quoted text clipped - 5 lines]
> Thanks in advance for any help.
> Donna