+ Reply to Thread
Results 1 to 3 of 3

Command button to transfer between shhets

Hybrid View

troysie Command button to transfer... 04-20-2013, 06:21 AM
davesexcel Re: Command button to... 04-20-2013, 06:27 AM
troysie Re: Command button to... 04-21-2013, 02:53 AM
  1. #1
    Registered User
    Join Date
    02-09-2010
    Location
    knottingley england
    MS-Off Ver
    Office 365 Excel
    Posts
    53

    Command button to transfer between shhets

    say i have a command button on sheet 4. Whatever cell is selected on sheet 4 when i press the command button i want the contents of that cell copied to sheet 1 C13
    regards Troysie

  2. #2
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Regina
    MS-Off Ver
    MS 365
    Posts
    13,524

    Re: Command button to transfer between shhets

    Try,
    Sub One()
        ActiveCell.Copy Destination:=Sheet1.Range("C4")
    End Sub
    Sub Two()
        Sheet1.Range("C4") = ActiveCell
    End Sub

  3. #3
    Registered User
    Join Date
    02-09-2010
    Location
    knottingley england
    MS-Off Ver
    Office 365 Excel
    Posts
    53

    Re: Command button to transfer between shhets

    thanks dave it works a treat

+ 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