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

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

قام بنشر
Sub BorderCells()
    Dim rng As Range
    Selection.Borders(xlEdgeLeft).LineStyle = 0
    Selection.Borders(xlEdgeTop).LineStyle = 0
    Selection.Borders(xlEdgeBottom).LineStyle = 0
    Selection.Borders(xlEdgeRight).LineStyle = 0
    Selection.Borders(xlInsideVertical).LineStyle = 0
    Selection.Borders(xlInsideHorizontal).LineStyle = 0
    For Each rng In Selection
        If Len(rng) <> 0 Then
            rng.Borders(xlEdgeLeft).LineStyle = 1
            rng.Borders(xlEdgeTop).LineStyle = 1
            rng.Borders(xlEdgeBottom).LineStyle = 1
            rng.Borders(xlEdgeRight).LineStyle = 1
        End If
    Next
End Sub

الكود يطبق علي الخلايا المحددة .. يمكن استبدال السليكشن بالنطاق المراد تطبيق الكود عليه

  • Like 1
قام بنشر

بعد اذن اخي عبد السلام

كود مختصر

Sub show_borders()
    With Selection.Borders
        .LineStyle = xlNone
        .LineStyle = xlContinuous
    End With
    
     With Selection.SpecialCells(xlCellTypeConstants, 23).Borders
      .LineStyle = xlContinuous
      .Weight = xlThin
    End With
    
End Sub

 

  • Like 3
قام بنشر (معدل)
19 دقائق مضت, اشرف النعاس said:

كيف استخدم هذا الكود لنطاق معيد على سبيل المتال من A2 الى D10  في sheet 1

استبدل كلمة selection  باسم النطاق ليصبح الكود هكذا

Sub show_borders()
    With sheets("sheet1").Range("a2:d10").Borders
        .LineStyle = xlNone
        .LineStyle = xlContinuous
    End With
    
     With sheets("sheet1").Range("a2:d10").SpecialCells(xlCellTypeConstants, 23).Borders
      .LineStyle = xlContinuous
      .Weight = xlThin
    End With
    
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