Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #4  
Old 12-24-2017, 09:27 AM
NoSparks NoSparks is offline How to trigger a macro on cell *selection* Windows 7 64bit How to trigger a macro on cell *selection* Office 2010 64bit
Excel Hobbyist
 
Join Date: Nov 2013
Location: British Columbia, Canada
Posts: 842
NoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of lightNoSparks is a glorious beacon of light
Default

No problem.

You can use a standard range in the Worksheet_SelectionChange macro by restricting things to specific column and rows,
for example column E and rows 4 to 20.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

'limit to single cell selection
If Target.Count > 1 Then Exit Sub
'limit to specific column
If Target.Column <> 5 Then Exit Sub
'limit to specific rows
If Target.Row < 4 Or Target.Row > 20 Then Exit Sub

    ' do what's required, example
    MsgBox "The sheet address of the cell you just entered is " & Target.Address
    '
    
End Sub
Reply With Quote
 



Similar Threads
Thread Thread Starter Forum Replies Last Post
Limit min and max number to a cell based on country selection hussainshaikh1 Excel 1 02-02-2017 07:06 AM
How do I trigger a macro from a document? brucemc777 Word VBA 4 01-25-2016 01:42 AM
How to trigger a macro on cell *selection* Selection from cell with list contents autopopulates contents of another cell markharper80 Excel 3 02-16-2015 04:18 PM
Hyperlink in cell to trigger pop up text box Carpie Excel Programming 0 08-13-2013 10:33 AM
How to trigger a macro on cell *selection* ms office excel 2007 cell selection issues pavamaklava Excel 1 05-12-2010 10:47 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 11:14 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft