![]() |
How to select Cell address between Specified Range
If user click between Range("A1:A10") only then i would like to return the
address of the selected cell for calculation purpose. Is it possible in vba ? |
How to select Cell address between Specified Range
Look at the Selection_Change event of the worksheet where you want
this to happen: Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Intersect(Target, Range("A1:A10")) _ Is Nothing Then MsgBox Target.Address End Sub Max wrote: If user click between Range("A1:A10") only then i would like to return the address of the selected cell for calculation purpose. Is it possible in vba ? |
How to select Cell address between Specified Range
msgbox Selection.Address & ", " & ActiveCell.Address
-- Regards, Tom Ogilvy "Max" wrote: If user click between Range("A1:A10") only then i would like to return the address of the selected cell for calculation purpose. Is it possible in vba ? |
How to select Cell address between Specified Range
and here is another interpretation:
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Intersect(Selection, _ Range("A1:A10")) Is Nothing Then MsgBox Target.Address End If End Sub Right click on the sheet tab and select view code - then paste in the above. -- Regards, Tom Ogilvy "Max" wrote: If user click between Range("A1:A10") only then i would like to return the address of the selected cell for calculation purpose. Is it possible in vba ? |
How to select Cell address between Specified Range
Thanx JW,
Your solution solve my problem. "JW" wrote: Look at the Selection_Change event of the worksheet where you want this to happen: Private Sub Worksheet_SelectionChange(ByVal Target As Range) If Not Intersect(Target, Range("A1:A10")) _ Is Nothing Then MsgBox Target.Address End Sub Max wrote: If user click between Range("A1:A10") only then i would like to return the address of the selected cell for calculation purpose. Is it possible in vba ? |
All times are GMT +1. The time now is 04:14 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com