اذهب الي المحتوي
أوفيسنا

الردود الموصى بها

قام بنشر

السلام عليكم

حط هذا الكود في حدث الورقة


Public Colr_Row As Range

Private Sub Worksheet_Selectionchange(ByVal Target As Range)

If Not Intersect(Target, Range("A2:M100")) Is Nothing Then

On Error Resume Next

    If Not Colr_Row Is Nothing Then

	    Colr_Row.EntireRow.Interior.ColorIndex = xlNone

	    Colr_Row.EntireColumn.Interior.ColorIndex = xlNone

    End If

    '=================================

    ' من أول عمود في المدى إلى اخر عمود

    Range(Cells(Target.Row, 1), Cells(Target.Row, "M")).Interior.Color = RGB(245, 232, 168)

    Target.EntireColumn.Interior.Color = RGB(215, 228, 188)

    '=================================

    Application.EnableEvents = False

    Target.Interior.Color = RGB(255, 151, 168)

    Application.EnableEvents = True

    Set Colr_Row = Target

End If

End Sub

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

زائر
اضف رد علي هذا الموضوع....

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • تصفح هذا الموضوع مؤخراً   0 اعضاء متواجدين الان

    • لايوجد اعضاء مسجلون يتصفحون هذه الصفحه
×
×
  • اضف...

Important Information