+ Reply to Thread
Results 1 to 5 of 5

Macro to write clicked cell value

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    11-04-2012
    Location
    Czech Republic
    MS-Off Ver
    MS 365
    Posts
    267

    Macro to write clicked cell value

    Hi all,

    I just want a small help with one simple macro.

    Is it possible to have some macro, which will write cell value from clicked cells in column "B" to the cell "A1"?

    Example, if I clicked on B12, that value will be in A1 as well.

    Thank you

    Andy

  2. #2
    Forum Expert skywriter's Avatar
    Join Date
    06-09-2014
    Location
    USA
    MS-Off Ver
    365 Version 2409
    Posts
    2,789

    Re: Macro to write clicked cell value

    I read this to mean keep what's in A1 and append what is clicked on in the B column.

    So if A1 has 1 and you click on a cell in B that has 5 A1 now has 15. If that is not the case, then please explain further, a sample worksheet and an explanation would even better.

    The code if you wish to use it on a different workbook has to go into the sheet module for the sheet you want it to work with. You do this by right clicking the sheet tab and choosing view code and pasting the code into the window that comes up. If you put it into a standard module it will not work.

    The code is already installed on the sample sheet I attached. Enable macros and click on one of the numbers in column B and you will see the results.

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Not IsEmpty(Target.Value) And Target.Column = 2 Then
            Range("A1").Value = Range("A1").Value & Target.Value
        End If
    End Sub
    Attached Files Attached Files

  3. #3
    Forum Contributor
    Join Date
    11-04-2012
    Location
    Czech Republic
    MS-Off Ver
    MS 365
    Posts
    267

    Re: Macro to write clicked cell value

    Hi

    thanks a lot for your reply. I've checked that and is almost, what I wanted - only one change, to not leave value from previous click in A1.
    So in A1 will be only latest value.

    Thank you :-)
    Andy

  4. #4
    Forum Expert skywriter's Avatar
    Join Date
    06-09-2014
    Location
    USA
    MS-Off Ver
    365 Version 2409
    Posts
    2,789

    Re: Macro to write clicked cell value

    Change to:

    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        If Not IsEmpty(Target.Value) And Target.Column = 2 Then
            Range("A1").Value = Target.Value
        End If
    End Sub

  5. #5
    Forum Contributor
    Join Date
    11-04-2012
    Location
    Czech Republic
    MS-Off Ver
    MS 365
    Posts
    267

    Re: Macro to write clicked cell value

    Waw, thanks a lot :-)))

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Use Vlookup as macro on clicked cell and all cell values below that clicked cell
    By harman83 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 11-06-2015, 12:58 PM
  2. Replies: 4
    Last Post: 09-26-2015, 06:44 PM
  3. [SOLVED] Load web image when cell holding URL is clicked/double-clicked
    By jchamber00 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-20-2013, 09:13 PM
  4. [SOLVED] code so that when a cell is clicked, a tick mark goes in the cell that was clicked
    By behnam in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 08-08-2013, 01:17 PM
  5. Run a macro when a cell is clicked
    By souvick in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-17-2011, 01:50 PM
  6. Run macro when a cell is clicked
    By Macdave_19 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-20-2010, 08:33 AM
  7. Change cell value when right-clicked/double-clicked
    By grime in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-17-2005, 09:05 AM

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