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

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

قام بنشر

السلام عليكم

 

لدي ملف اكسل مثلا عليه قواعد للتنسيق الشرطي مثلا ولتكن اكثر من 50 قاعدة  واريد ان افتح ملف جديد واضع فيه هذه القواعد بدلاُ من ان اقوم بها مرة اخرى

 

كيف انفذ ذلك ؟؟؟

 

0ebn.jpg

قام بنشر

الاخ العزيز

 

يمكنك تنفيذ ذلك بعملة مرة واحدة ولكن عليك اولا بتشغيل وحدات ماكرو بأستخدام اوفيس 2003

 

اما اذا كنت تستخدم 2007 عليك حفظ الملف بصيغة xml , Macro-enabledwoorkbook

 

قبل القيام بهذا

 

بعد ذلك يمكنك تنفيذ هذا بكل سهولة عن طريق تشغيل زر ماكرو الذى حددتة

 

بارك الله فيك

 

تقبل تحياتى

قام بنشر

السلام عليكم

Public Sub Rng_Cn()
 ' D' المدى حسب ملفك العمود
 ' غيره حسب العمود المراد تطبيق الشروط عليه
  Frmt_Cnd "D:D"
End Sub
Private Function Frmt_Cnd(Rn As String) As Variant
Range(Rn).Select
On Error Resume Next
With Range(Rn)
 .FormatConditions.Delete
 .FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, Formula1:="=""جديد"""
 .FormatConditions(.FormatConditions.Count).SetFirstPriority
With .FormatConditions(1)
.Interior.Color = RGB(253, 233, 217)
End With
'
.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, Formula1:="=""مستعمل"""
 .FormatConditions(.FormatConditions.Count).SetFirstPriority
With .FormatConditions(1)
.Interior.Color = RGB(250, 191, 143)
End With
'
.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, Formula1:="=""وارد"""
 .FormatConditions(.FormatConditions.Count).SetFirstPriority
With .FormatConditions(1)
.Interior.Color = RGB(196, 215, 155)
End With
'
.FormatConditions.Add Type:=xlCellValue, Operator:=xlEqual, Formula1:="=""صادر"""
 .FormatConditions(.FormatConditions.Count).SetFirstPriority
With .FormatConditions(1)
.Interior.Color = RGB(149, 179, 215)
End With
On Error GoTo 0
End With
End Function

  • 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