Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

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.


  #2   Report Post  
Posted to microsoft.public.excel.programming
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.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

THAT WORKS A TREAT THANKYOU SO MUCH I HAVE BEEN TRYING DIFFERENT WAYS WITHOUT
SUCCESS FOR AGES

COULD I BE CHEEKY AND ASK FOR A BIT MORE HELP

NOW THAT THE CELLS CONTENTS HAVE MOVED SHEETS HOW DO I GET IT TO
AUTOMATICALLY INSERT "VACANCY" IN THE CELL ON SHEET 1 A1

THANKS AGAIN

"Jim Thomlinson" wrote:

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.


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

First of all, turn off you damn CAPS LOCK key. Typing in caps is
considered shouting and thus rude, and is hard to read. I can't
imagine what would possess someone to type in all caps.

Sheets("Sheet1").Range("A1").Value = "Vacancy"


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com






"cityfc" wrote in message
...
THAT WORKS A TREAT THANKYOU SO MUCH I HAVE BEEN TRYING
DIFFERENT WAYS WITHOUT
SUCCESS FOR AGES

COULD I BE CHEEKY AND ASK FOR A BIT MORE HELP

NOW THAT THE CELLS CONTENTS HAVE MOVED SHEETS HOW DO I GET IT
TO
AUTOMATICALLY INSERT "VACANCY" IN THE CELL ON SHEET 1 A1

THANKS AGAIN

"Jim Thomlinson" wrote:

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.




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

thanks for all your help

sorry
just typed away and sent to late to realise

"Chip Pearson" wrote:

First of all, turn off you damn CAPS LOCK key. Typing in caps is
considered shouting and thus rude, and is hard to read. I can't
imagine what would possess someone to type in all caps.

Sheets("Sheet1").Range("A1").Value = "Vacancy"


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com






"cityfc" wrote in message
...
THAT WORKS A TREAT THANKYOU SO MUCH I HAVE BEEN TRYING
DIFFERENT WAYS WITHOUT
SUCCESS FOR AGES

COULD I BE CHEEKY AND ASK FOR A BIT MORE HELP

NOW THAT THE CELLS CONTENTS HAVE MOVED SHEETS HOW DO I GET IT
TO
AUTOMATICALLY INSERT "VACANCY" IN THE CELL ON SHEET 1 A1

THANKS AGAIN

"Jim Thomlinson" wrote:

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.







  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

With Sheets("Sheet1").Range("A1")
Sheets("Sheet2").Range("F2").Value = .Value
.Value = "Vacancy"
End With

--
Regards,
Tom Ogilvy


"cityfc" wrote in message
...
THAT WORKS A TREAT THANKYOU SO MUCH I HAVE BEEN TRYING DIFFERENT WAYS

WITHOUT
SUCCESS FOR AGES

COULD I BE CHEEKY AND ASK FOR A BIT MORE HELP

NOW THAT THE CELLS CONTENTS HAVE MOVED SHEETS HOW DO I GET IT TO
AUTOMATICALLY INSERT "VACANCY" IN THE CELL ON SHEET 1 A1

THANKS AGAIN

"Jim Thomlinson" wrote:

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.




  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default copy from sheet 1 $a$1 and paste on sheet 2 $f$2

thanks for everones help

"Tom Ogilvy" wrote:

With Sheets("Sheet1").Range("A1")
Sheets("Sheet2").Range("F2").Value = .Value
.Value = "Vacancy"
End With

--
Regards,
Tom Ogilvy


"cityfc" wrote in message
...
THAT WORKS A TREAT THANKYOU SO MUCH I HAVE BEEN TRYING DIFFERENT WAYS

WITHOUT
SUCCESS FOR AGES

COULD I BE CHEEKY AND ASK FOR A BIT MORE HELP

NOW THAT THE CELLS CONTENTS HAVE MOVED SHEETS HOW DO I GET IT TO
AUTOMATICALLY INSERT "VACANCY" IN THE CELL ON SHEET 1 A1

THANKS AGAIN

"Jim Thomlinson" wrote:

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.





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Copy from one Sheet and paste on another sheet based on condition Prem Excel Discussion (Misc queries) 2 December 24th 07 05:05 AM
Copy Paste to another sheet SallyGirl Excel Worksheet Functions 2 May 10th 07 08:10 PM
Active Cell Copy And Paste Sheet to Sheet A.R.J Allan Jefferys New Users to Excel 4 May 4th 06 02:04 AM
Copy from active sheet and paste into new sheet using info from cell in active Ingve Excel Programming 3 January 23rd 06 09:57 PM
automatic copy and paste from sheet to sheet in a workbook ramseyjramseyj Excel Programming 6 December 11th 04 12:37 AM


All times are GMT +1. The time now is 06:54 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"