User clicks cell within column and it's value populates another cell

jajones124

New Member
Joined
Sep 19, 2014
Messages
2
I've just started playing around with using macros within my sheets and I'm pretty sure this can be accomplished with _SelectionChange but I'm lost when it comes to making this work. Here is what I'd like to accomplish within the sheet:

If user clicks any cell within Column B, I want that value to be returned into cell U9

Any help?
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.
.
.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

    With Me.Range("U9")
        If Target.Count = 1 And Target.Column = 2 Then
            .Value = Target.Value
        Else
            .ClearContents
        End If
    End With

End Sub
 
Upvote 0

Forum statistics

Threads
1,213,531
Messages
6,114,167
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top