السلام عليكم ورحمة اله وبركاته
الاساتذة المشرفين والاعضاء الافاضل المحترمين
في الملف لمرفق لدي في حدث الورقة كودين بمسمى واحد :
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
If [e2].Value > 0 Then
ActiveSheet.Shapes("button 1").Visible = True
Else
ActiveSheet.Shapes("button 1").Visible = False
End If
End Sub
Private Const Ali_Sta As String = "-"
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Not Intersect(Range("E7:E13"), Target) Is Nothing Then
If Target.Value > 0 Then
Target.Font.Color = RGB(255, 0, 0)
Target.Value = Ali_Sta & Target.Value
Exit Sub
End If
End If
End Sub
فما الحل في هذا التعارض ؟؟؟
book12.rar