View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson[_5_] Jim Thomlinson[_5_] is offline
external usenet poster
 
Posts: 486
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

Here is the code...

Sheets("Sheet2").Range("F2").value = Sheets("Sheet1").Range("A1").Value

Do you need help creating a button and adding the code to the button?
--
HTH...

Jim Thomlinson


"cityfc" wrote:

I have a name on sheet1 in cell a1 and when i click a button i want the
contents of a1 pasting to f2 on sheet 2

Thank You for your help in advance.