+ Reply to Thread
Results 1 to 3 of 3

How do i reduce the thickness of Border in Excel?

  1. #1
    Antony
    Guest

    How do i reduce the thickness of Border in Excel?

    I want to reduce the thickness of the border line in the excel, I want to
    create a line thickness less than one point.

    Please do suggest me how do I write that macro for Excel in VB.



  2. #2
    Don Guillett
    Guest

    Re: How do i reduce the thickness of Border in Excel?

    Here are some I use. Weight can be xlthin,xlmedium, or xlthick

    Sub unborder()
    Selection.Borders.LineStyle = xlLineStyleNone
    End Sub
    Sub borderdo() 'Next one is better
    With Selection.Borders
    ..LineStyle = xlContinuous
    '.Weight = xlMedium
    End With
    End Sub
    Sub borderoneline()
    Selection.Borders.LineStyle = xlContinuous
    End Sub

    --
    Don Guillett
    SalesAid Software
    [email protected]
    "Antony" <[email protected]> wrote in message
    news:[email protected]...
    > I want to reduce the thickness of the border line in the excel, I want to
    > create a line thickness less than one point.
    >
    > Please do suggest me how do I write that macro for Excel in VB.
    >
    >




  3. #3
    Registered User
    Join Date
    08-18-2004
    Posts
    16
    This will change the border thickness of the activecell

    Please Login or Register  to view this content.

+ Reply to Thread

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