Results 1 to 4 of 4

code to put borders around all used cells

Threaded View

  1. #1
    Valued Forum Contributor
    Join Date
    11-16-2004
    Location
    Devon UK
    MS-Off Ver
    2010
    Posts
    357

    code to put borders around all used cells

    I am using the code below to put borders around all cells in a specific worksheet however it isn't quite working as I need it to:
    Range("a4").Select
        Range(Selection, Selection.End(xlDown)).Select
        Range(Selection, Selection.End(xlToRight)).Select
     
            With Selection.Borders
                .LineStyle = xlContinuous
                .Weight = xlThin
                .ColorIndex = xlAutomatic
            End With
    If all the cells have something in then it works fine however if say the data goes say 10 rows down and 15 rows across and if only one cell in the last column had data in it then it doesn't work corrrectly.
    so ideally what I need is to count the columns in the header row (row 4) which I can do, then count the number of filled cells in column A which again I can do then put cell borders around all the cells in the square that is formed which is where I am struggling to find the solution
    Last edited by tryer; 11-21-2010 at 12:33 PM.

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