السلام عليكم
اخى الحبيب رجب جاويش
حاولت ان اضيف اضافه ان يغلف الملف بعد عدد 3 محاولات
ولاكن لم اوفق
هلى من حل لتصحيح الخطاء
Sub addition()
Dim ER, R
pass = "123"
sama = InputBox("إدخل الباسورد لتنفيذ الماكرو")
If sama <> pass Then
MsgBox ("الباسورد خطاء (الإدخال الخاطئ اكثر من 3 محاولات يقفل البرنامج)")
ss = ss + 1
If ss> 3 Then
Application.DisplayAlerts = False
Application.Quit
End If
ER = ActiveSheet.UsedRange.Rows.Count
For R = 8 To ER
If WorksheetFunction.IsNumber(Cells(R, 7)) = True And _
Cells(R, 7) <> 0 Then Cells(R, 7) = Cells(R, 7) + 1
If WorksheetFunction.IsNumber(Cells(R, 23)) = True And _
Cells(R, 23) <> 0 Then Cells(R, 23) = Cells(R, 23) + 1
Next R
End Sub