ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   range onclick? (https://www.excelbanter.com/excel-programming/283383-range-onclick.html)

Dennis

range onclick?
 
Hi,
I want to run a subroutine onclick in an excel worksheet.
More precise: Onclick in any cell I want to check for that
cells properties and then react depending on them.
Please help, how do I get excel to react on every click in
the active sheet.
Dennis

Dennis

range onclick?
 
I got it.
sorry to have bothered you for nothing.
But - IŽll be back with more profound questions.

my solution:

"Private Sub Worksheet_SelectionChange(ByVal Target As
Range)"

thanks anyway

dennis


-----Original Message-----
Hi,
I want to run a subroutine onclick in an excel worksheet.
More precise: Onclick in any cell I want to check for

that
cells properties and then react depending on them.
Please help, how do I get excel to react on every click

in
the active sheet.
Dennis
.


Haldun Alay[_3_]

range onclick?
 
Hi,

You can you worksheet's SelectionChange event (this is just for a single sheet) or if you want to control this event in workbook base, use Workbook's SheetSelectionChange event.

Target variable represents selected cell(s).

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

if target.count=1 then 'check if just one cell selected.
'Do something
end if


End Sub


OR

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
if target.count=1 then 'check if just one cell selected.
'Do something
end if
End Sub


--
Regards

Haldun Alay

To e-mail me, please remove AT and DOT from my e-mail address.



"Dennis" , iletide sunu yazdi ...
Hi,
I want to run a subroutine onclick in an excel worksheet.
More precise: Onclick in any cell I want to check for that
cells properties and then react depending on them.
Please help, how do I get excel to react on every click in
the active sheet.
Dennis


All times are GMT +1. The time now is 10:36 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com