Results 1 to 10 of 10

Borders Around Cells

Threaded View

  1. #1
    Registered User
    Join Date
    03-23-2010
    Location
    Melbourne Australia Down Under
    MS-Off Ver
    Excel 2010
    Posts
    56

    Borders Around Cells

    I am not very good with VBA in excel.

    I have this code below that I use in excel, works fine with one drawback that I repeat it for each worksheet because each worksheet has a different name.

    Is it possible in excel to use global code for more that one worksheet without having to repeat the code?

    What I want to do is draw a border around cells. Like Row 6 Column A to J using the code below.

    Sub DoTheLot()    'Borders
        Dim R As Long         'R represents ROWS,
        Dim R_From As Long
        Dim R_To As Long
        Dim LastCol As Long
    
        R_From = 5
    
        With Sheets("KOLETSIS")
            R_To = .Cells(.Rows.Count, "J").End(xlUp).Row
            For R = R_From To R_To
                LastCol = .Cells(R, .Columns.Count).End(xlToLeft).Column
    
                Select Case Cells(R, "J").Value
    
                Case "Out of Order"
                    .Cells(R, "A").Resize(, LastCol).Font.ColorIndex = 3    'Red
                    
                    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
                    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
                    With Selection.Borders(xlEdgeLeft)
                        .LineStyle = xlContinuous
                        .Weight = xlMedium
                        .ColorIndex = xlAutomatic
                    End With
                    With Selection.Borders(xlEdgeTop)
                        .LineStyle = xlContinuous
                        .Weight = xlMedium
                        .ColorIndex = xlAutomatic
                    End With
                    With Selection.Borders(xlEdgeBottom)
                        .LineStyle = xlContinuous
                        .Weight = xlMedium
                        .ColorIndex = xlAutomatic
                    End With
                    With Selection.Borders(xlEdgeRight)
                        .LineStyle = xlContinuous
                        .Weight = xlMedium
                        .ColorIndex = xlAutomatic
                    End With
                    Selection.Borders(xlInsideVertical).LineStyle = xlNone
    
                End Select
            Next R
        End With
    
    End Sub
    I would appreciate any help.

    Many thanks
    Attached Files Attached Files
    Last edited by kapeller; 06-12-2011 at 08:14 AM.
    Have a great day!!!!

    Lou

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1