اذهب الي المحتوي
أوفيسنا
بحث مخصص من جوجل فى أوفيسنا
Custom Search

تلوين رؤس الاعمده عند الوقوف علي اي خليه بها


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

السلام عليكم ورحمة الله وبركاته

برجاء عمل كود يلون رؤس الاعمده فقط عند الوقوف علي اي خليه بها

بمعني عندما نكتب في عمود المرتبات يظلل كلمة مرتبات فء رأس العمود

لانني يحدث معي لبس في اختيار الاعمده لو كانت كثيره

ولكم جزيل الشكر

تظليل.zip

رابط هذا التعليق
شارك

جرب هذا الماكرو

Option Explicit


Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim C%, R%
Dim My_Rg As Range
 Application.EnableEvents = False
 Application.ScreenUpdating = False
 Application.Calculation = xlCalculationManual
 C = ActiveSheet.Cells(3, Columns.Count).End(1).Column
 R = ActiveSheet.Cells(Rows.Count, 1).End(3).Row + 2
 Set My_Rg = Range("a3").Resize(R - 2, C)
 If Intersect(Target, My_Rg) Is Nothing Then GoTo 1
  My_Rg.Interior.ColorIndex = 0
  My_Rg.Columns(Target.Column).Interior.ColorIndex = 36
1:
Application.EnableEvents = True
 Application.ScreenUpdating = True
 Application.Calculation = xlCalculationAutomatic
End Sub

الملف مرفق

تظليل salim.rar

رابط هذا التعليق
شارك

تم تعديل الكود

(يجب وضعه في حذث الصفحة و ليس في موديل مستقل)

Option Explicit

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim C%, My_Rg As Range
 Application.EnableEvents = False
 Application.ScreenUpdating = False
 Application.Calculation = xlCalculationManual
 C = ActiveSheet.Cells(3, Columns.Count).End(1).Column
 Set My_Rg = Range("a3").Resize(500, C)
 If Intersect(Target, My_Rg) Is Nothing Then GoTo 1
My_Rg.Rows(1).Interior.ColorIndex = 0
 Cells(3, Target.Column).Interior.ColorIndex = 36
1:
Application.EnableEvents = True
 Application.ScreenUpdating = True
 Application.Calculation = xlCalculationAutomatic
End Sub

الملف مرفق

 

Talween.rar

  • Like 1
رابط هذا التعليق
شارك

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