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

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

قام بنشر

السلام عليكم

 

هذا الكود يغير تنسيق الخلية الفعالة 

 

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
 
.........................
 
Target.Font.Bold = True
Target.Interior.ColorIndex = 6
Target.Font.Color = 255
Target.Font.Size = 15
 
End Sub
 
لكنه ناقص ويحتاج مكان النقاط الى كود يعيد جميع خلايا الصفحة الى حالة التنسيق الطبيعية باستثناء الخلية المختارة
 
شكرا
 
 
 
 
 
قام بنشر (معدل)

بعد إذن أخي الفاضل ياسر أبو خليل

هذا كود يقوم بتلوين الخليه الفعاله إلي اللون الأصفر

ملحوظة :- قم بوضعه في الشيت الذي تريد تفعيل الخليه إلي اللون الأصفر 

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
MyColor = 6
If Not IsError(Me.[N_Color_Rng]) Then
If Not IsError(Me.[N_Color_Color]) Then
If Not IsError(Me.[N_Color_Old]) Then
If Me.[N_Color_Rng].Interior.ColorIndex = Me.[N_Color_Old] Then
Me.[N_Color_Rng].Interior.ColorIndex = Me.[N_Color_Color]
End If
End If
End If
End If
Me.Names.Add "N_Color_Rng", ActiveCell
Me.Names.Add "N_Color_Color", ActiveCell.Interior.ColorIndex
Me.Names.Add "N_Color_Old", MyColor
ActiveCell.Interior.ColorIndex = MyColor
End Sub
تم تعديل بواسطه Mahmoud330

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