LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 41
Default Worksheet_Change not working when using paste

Hi all
Excel 2000 SP3
According to values input on a worksheet I am using the worksheet_Change
event to launch some routines.
When values are input manually on the worksheet the worksheet_Change event
works OK
When values are pasted on the worksheet this event does not work.
Is there any way I can make the Worksheet_Change event work when I paste
several values onto my worksheet?
Here's part of my code:
Private Sub Worksheet_Change(ByVal Target As Range)
'Saisie de données dans la plage des colonnes Catégorie à Ext Hor.
If Not Intersect(Range(Target.Address), Range("H12:Q2012")) Is Nothing Then
'Copie des données pour le cas où la cat = 0...
'... et nombre d'infos OK
If Target.Row = 12 And Cells(Target.Row, 8).Value = 0 _
And Cells(Target.Row, 18).Value = True Then
LigCatZero = Target.Row
'Message d'avertissement une seule fois
Select Case Sheets("Saisie AVV").[A12]
Case Is = ""
MsgBox MsgCat0, vbInformation, TitreMsgCat0
AVVCopieCatZero
Case Else
AVVCopieCatZero
End Select
End If
End If
End Sub
Thanks in advance for your help
Regards
Pascal


 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Paste and Paste Special No Longer Working - Excel 2003 SheriJ Excel Discussion (Misc queries) 2 January 15th 09 09:23 PM
Paste special not working Vinod[_2_] Excel Discussion (Misc queries) 0 February 13th 08 01:41 PM
Worksheet_Change Event Not Working Michael Beckinsale Excel Programming 0 August 1st 03 02:43 PM
worksheet_change vs. calculate, and worksheet_change not running Tom Ogilvy Excel Programming 1 July 14th 03 02:51 AM
worksheet_change vs. calculate, and worksheet_change not running Ross[_5_] Excel Programming 0 July 13th 03 04:27 PM


All times are GMT +1. The time now is 11:31 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"