Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Wondering if anyone could give me the best solution to show the value of the
cell in column R of the active row in cell a1? It would be even better if cell A1 would only up date if the active cell was restricted to A2:AZ200 Many thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Strange name
Copy this event in the worksheet module See http://www.rondebruin.nl/code.htm Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Application.Intersect(Range("A2:AZ200"), Target) Is Nothing Then Range("A1").Value = Cells(Target.Row, "R").Value Else Range("A1").Value = "" End If End Sub -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Spuds Glorious Spuds" <Spuds Glorious wrote in message ... Wondering if anyone could give me the best solution to show the value of the cell in column R of the active row in cell a1? It would be even better if cell A1 would only up date if the active cell was restricted to A2:AZ200 Many thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lookup specific value in a column and show it in a new cell | Excel Worksheet Functions | |||
Move active cell to same location on each worksheet | Excel Discussion (Misc queries) | |||
On Opening Excel WB the Active cell location never changes | Excel Discussion (Misc queries) | |||
Looking up 3 cells based on defined value in a row/column location | Excel Worksheet Functions | |||
cell location containing specific text | Excel Worksheet Functions |