Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a macro similar to the .onentry macro that will fire when a
value is pasted into the cell, rather than entered in. Alternatively is there a way to make the .onentry macro fire when a value is pasted into a cell. TIA David |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On May 6, 10:18 am, David wrote:
Is there a macro similar to the .onentry macro that will fire when a value is pasted into the cell, rather than entered in. Alternatively is there a way to make the .onentry macro fire when a value is pasted into a cell. TIA David Look into the Worksheet_Change event. Quoting the example in the Excel VBA Help ... Private Sub Worksheet_Change(ByVal Target as Range) Target.Font.ColorIndex = 5 End Sub It fires when a cell or range of cells changes because of entry or other user activity; such as a Paste, drag and drop, deletion, etc. Tom Lavedas =========== http://members.cox.net/tglbatch/wsh/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to fire upon opening file | Excel Discussion (Misc queries) | |||
ListBox Selection to fire Macro | Excel Programming | |||
Fire Macro from Cell Change | Excel Worksheet Functions | |||
fire macro on AutoFilter change | Excel Programming | |||
how to get onkey macro to fire while another macro is running | Excel Programming |