Chris Linefield
XLDnaute Junior
Bonjour tout le monde,
Je viens vers vous car je rencontre un petit problème avec mon fichier excel qui fonctionnait très bien, mais depuis quelques semaines déconne. Il me sort ce message d'erreur :
Avez-vous une petite idée de mon erreur ? Ci-joint le VBA.
Je viens vers vous car je rencontre un petit problème avec mon fichier excel qui fonctionnait très bien, mais depuis quelques semaines déconne. Il me sort ce message d'erreur :
Avez-vous une petite idée de mon erreur ? Ci-joint le VBA.
VB:
Private Sub Worksheet_change(ByVal Target As Range)
Dim ligne As Integer
If Not Intersect(Target, Range("I:M")) Is Nothing Then
ligne = Target.Row
If Range("I" & ligne) = "" And Range("C" & ligne) <> "" Then
MsgBox ("Veuillez entrer une date de demande")
Else
Columns("B:B").Select
ActiveWorkbook.Worksheets("Activités").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Activités").Sort.SortFields.Add Key:= _
Range("B3:B500"), SortOn:=xlSortOnValues, Order:=xlAscending, CustomOrder _
:="En attente,A planifier,En cours, Finalisé", DataOption:=xlSortNormal
ActiveWorkbook.Worksheets("Activités").Sort.SortFields.Add Key:= _
Range("A3:A500"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption _
:=xlSortNormal
ActiveWorkbook.Worksheets("Activités").Sort.SortFields.Add Key:= _
Range("E3:E500"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal
With ActiveWorkbook.Worksheets("Activités").Sort
.SetRange Range("A2:R500")
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Target.Select
Rows("3:200").EntireRow.AutoFit
If Cells.Find(What:="finalisé", After:=ActiveCell, LookIn:=xlValues, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False) Is Nothing Then
Exit Sub
Else
Cells.Find(What:="finalisé", After:=ActiveCell, LookIn:=xlValues, LookAt _
:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
False, SearchFormat:=False).Activate
ligne = ActiveCell.Row
Rows(ligne).Select
Selection.Copy
Call copy_paste
Rows("3:200").EntireRow.AutoFit
End If
End If
Else:
Target.Select
Exit Sub
End If
End Sub