![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Mar 2002
Location: Central NY(not the park)
Posts: 14
|
Hello again from Upstate NY,
Could someone tell me (I'm sure many of you can) how I can send a number selected from H3:H32 to a single destination cell B2 with a single click on the selected cell ? Everybody on this site has been great with all of the help, especially to this novice. THANKS A LOT !!! SCOTT |
|
|
|
|
|
#2 |
|
Board Regular
Join Date: Mar 2002
Location: Cincinnati, Ohio, USA
Posts: 6,824
|
Hey there.
Place this in your worksheet code module... Private Sub Worksheet_SelectionChange(ByVal Target As Range) With Target If .Column = 8 Then and _ .Row > 2 And .Row < 34 Then _ Cells(2, 2) = Cells(.Row, 8) End With End Sub Have a nice day! Tom [ This Message was edited by: TsTom on 2002-04-05 17:39 ] |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|