+ Reply to Thread
Results 1 to 7 of 7

copy from sheet 1 $a$1 and paste on sheet 2 $f$2

  1. #1
    cityfc
    Guest

    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. #2
    Jim Thomlinson
    Guest

    RE: 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. #3
    cityfc
    Guest

    RE: 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. #4
    Chip Pearson
    Guest

    Re: 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" <cityfc@discussions.microsoft.com> wrote in message
    news:E86C6087-4944-4454-A1CC-6AC17897426B@microsoft.com...
    > 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. #5
    Tom Ogilvy
    Guest

    Re: 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" <cityfc@discussions.microsoft.com> wrote in message
    news:E86C6087-4944-4454-A1CC-6AC17897426B@microsoft.com...
    > 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. #6
    cityfc
    Guest

    Re: 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" <cityfc@discussions.microsoft.com> wrote in message
    > news:E86C6087-4944-4454-A1CC-6AC17897426B@microsoft.com...
    > > 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. #7
    cityfc
    Guest

    Re: 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" <cityfc@discussions.microsoft.com> wrote in message
    > news:E86C6087-4944-4454-A1CC-6AC17897426B@microsoft.com...
    > > 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 to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1